Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1973)

Unified Diff: base/gtest_prod_util.h

Issue 11293028: GTTF: remove FAILS_ prefix, part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/debug/stack_trace_unittest.cc ('k') | base/json/json_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/gtest_prod_util.h
diff --git a/base/gtest_prod_util.h b/base/gtest_prod_util.h
index 1f0ce6175ae2c04d29bc5574d49a1dda9e6c7ea5..3289e6301da7182ea5fc7689557745dd2ff6f747 100644
--- a/base/gtest_prod_util.h
+++ b/base/gtest_prod_util.h
@@ -21,8 +21,7 @@
#define FRIEND_TEST_ALL_PREFIXES(test_case_name, test_name) \
FRIEND_TEST(test_case_name, test_name); \
FRIEND_TEST(test_case_name, DISABLED_##test_name); \
- FRIEND_TEST(test_case_name, FLAKY_##test_name); \
- FRIEND_TEST(test_case_name, FAILS_##test_name)
+ FRIEND_TEST(test_case_name, FLAKY_##test_name)
// C++ compilers will refuse to compile the following code:
//
@@ -62,7 +61,6 @@
#define FORWARD_DECLARE_TEST(test_case_name, test_name) \
class test_case_name##_##test_name##_Test; \
class test_case_name##_##DISABLED_##test_name##_Test; \
- class test_case_name##_##FLAKY_##test_name##_Test; \
- class test_case_name##_##FAILS_##test_name##_Test
+ class test_case_name##_##FLAKY_##test_name##_Test
#endif // BASE_GTEST_PROD_UTIL_H_
« no previous file with comments | « base/debug/stack_trace_unittest.cc ('k') | base/json/json_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698