/third_party/python/Lib/test/ |
H A D | re_tests.py | 7 [SUCCEED, FAIL, SYNTAX_ERROR] = range(3) 43 # 2: the expected result (SUCCEED, FAIL, SYNTAX_ERROR) 69 ('(?P<foo_123>a)', 'a', SUCCEED, 'g1', 'a'), 70 ('(?P<foo_123>a)(?P=foo_123)', 'aa', SUCCEED, 'g1', 'a'), 74 ('[\\1]', '\1', SUCCEED, 'found', '\1'), # Character 75 ('\\09', chr(0) + '9', SUCCEED, 'found', chr(0) + '9'), 76 ('\\141', 'a', SUCCEED, 'found', 'a'), 77 ('(a)(b)(c)(d)(e)(f)(g)(h)(i)(j)(k)(l)\\119', 'abcdefghijklk9', SUCCEED, 'found+"-"+g11', 'abcdefghijklk9-k'), 80 (r'\0', '\0', SUCCEED, 'found', '\0'), 81 (r'[\0a]', '\0', SUCCEED, 'foun [all...] |
/third_party/googletest/googletest/test/ |
H A D | gtest_sole_header_test.cc | 42 EXPECT_NO_FATAL_FAILURE(SUCCEED()); in TEST() 44 EXPECT_NO_FATAL_FAILURE({ SUCCEED(); }); in TEST() 49 ASSERT_NO_FATAL_FAILURE(SUCCEED()); in TEST() 51 ASSERT_NO_FATAL_FAILURE({ SUCCEED(); }); in TEST()
|
H A D | googletest-output-test_.cc | 829 EXPECT_FATAL_FAILURE(SUCCEED(), "Expected fatal failure."); in TEST_F() 845 EXPECT_NONFATAL_FAILURE(SUCCEED(), "Expected non-fatal failure."); in TEST_F() 903 EXPECT_FATAL_FAILURE_ON_ALL_THREADS(SUCCEED(), "Expected fatal failure."); in TEST_F() 917 EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(SUCCEED(), in TEST_F()
|
H A D | googletest-listener-test.cc | 228 SUCCEED(); // Triggers OnTestPartResult. in TEST_F() 233 SUCCEED(); // Triggers OnTestPartResult. in TEST_F()
|
H A D | googletest-failfast-unittest_.cc | 150 TEST(HasSkipTest, Test0) { SUCCEED() << "Expected success."; } in TEST()
|
H A D | gtest_xml_output_unittest_.cc | 52 SUCCEED() << "This is a success."; in TEST_F()
|
H A D | gtest_unittest.cc | 4164 EXPECT_NO_FATAL_FAILURE(SUCCEED()); in TEST() 4171 ASSERT_NO_FATAL_FAILURE(SUCCEED()); in TEST() 4221 // Tests that Google Test tracks SUCCEED*. 4222 TEST(SuccessfulAssertionTest, SUCCEED) { in TEST() 4223 SUCCEED(); in TEST() 4224 SUCCEED() << "OK"; in TEST() 4321 // Tests using SUCCEED with a streamed message. 4322 TEST(AssertionWithMessageTest, SUCCEED) { SUCCEED() << "Success == " << 1; } in TEST() 4703 // Tests SUCCEED [all...] |
H A D | googletest-death-test-test.cc | 1524 TEST(NotADeathTest, Test) { SUCCEED(); } in TEST()
|
/third_party/googletest/googletest/samples/ |
H A D | sample9_unittest.cc | 66 // Called after a failed assertion or a SUCCEED() invocation. 88 SUCCEED() << "SUCCEED() has been invoked from here"; in TEST()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-bytecodes.h | 49 V(SUCCEED, 14, 4) /* bc8 pad24 */ \
|
H A D | regexp-interpreter.cc | 549 BYTECODE(SUCCEED) { in RawMatch()
|
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/ |
H A D | ldso_cfi_test.cpp | 293 SUCCEED(); in HWTEST_F()
|
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/ |
H A D | ReactorUnitTests.cpp | 2495 SUCCEED() << "Coroutines not supported"; 2529 SUCCEED() << "Coroutines not supported"; 2571 SUCCEED() << "Coroutines not supported"; 2606 SUCCEED() << "Coroutines not supported"; 2631 SUCCEED() << "Coroutines not supported"; 3429 SUCCEED() << "Coroutines not supported";
|
/third_party/googletest/googletest/include/gtest/ |
H A D | gtest.h | 966 // Fired after a failed assertion or a SUCCEED() invocation. 1722 // SUCCEED generates a success - it doesn't automatically make the 1764 // Define this macro to 1 to omit the definition of SUCCEED(), which 1767 #define SUCCEED() GTEST_SUCCEED() macro
|
/third_party/node/deps/googletest/include/gtest/ |
H A D | gtest.h | 958 // Fired after a failed assertion or a SUCCEED() invocation. 1717 // SUCCEED generates a success - it doesn't automatically make the 1759 // Define this macro to 1 to omit the definition of SUCCEED(), which 1762 #define SUCCEED() GTEST_SUCCEED() macro
|
/third_party/mesa3d/src/gtest/include/gtest/ |
H A D | gtest.h | 1106 // Fired after a failed assertion or a SUCCEED() invocation. 1895 // SUCCEED generates a success - it doesn't automatically make the 1937 // Define this macro to 1 to omit the definition of SUCCEED(), which 1940 # define SUCCEED() GTEST_SUCCEED() macro
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 17715 #define SUCCEED( ... ) INTERNAL_CATCH_MSG( "SUCCEED", Catch::ResultWas::Ok, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ ) 17743 #define STATIC_REQUIRE( ... ) static_assert( __VA_ARGS__, #__VA_ARGS__ ); SUCCEED( #__VA_ARGS__ ) 17744 #define STATIC_REQUIRE_FALSE( ... ) static_assert( !(__VA_ARGS__), "!(" #__VA_ARGS__ ")" ); SUCCEED( "!(" #__VA_ARGS__ ")" ) 17908 #define SUCCEED( ... ) (void)(0)
|