Home
last modified time | relevance | path

Searched refs:SUCCEED (Results 1 - 17 of 17) sorted by relevance

/third_party/python/Lib/test/
H A Dre_tests.py7 [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 Dgtest_sole_header_test.cc42 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 Dgoogletest-output-test_.cc829 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 Dgoogletest-listener-test.cc228 SUCCEED(); // Triggers OnTestPartResult. in TEST_F()
233 SUCCEED(); // Triggers OnTestPartResult. in TEST_F()
H A Dgoogletest-failfast-unittest_.cc150 TEST(HasSkipTest, Test0) { SUCCEED() << "Expected success."; } in TEST()
H A Dgtest_xml_output_unittest_.cc52 SUCCEED() << "This is a success."; in TEST_F()
H A Dgtest_unittest.cc4164 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 Dgoogletest-death-test-test.cc1524 TEST(NotADeathTest, Test) { SUCCEED(); } in TEST()
/third_party/googletest/googletest/samples/
H A Dsample9_unittest.cc66 // 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 Dregexp-bytecodes.h49 V(SUCCEED, 14, 4) /* bc8 pad24 */ \
H A Dregexp-interpreter.cc549 BYTECODE(SUCCEED) { in RawMatch()
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/
H A Dldso_cfi_test.cpp293 SUCCEED(); in HWTEST_F()
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/
H A DReactorUnitTests.cpp2495 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 Dgtest.h966 // 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 Dgtest.h958 // 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 Dgtest.h1106 // 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 Dcatch.hpp17715 #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)

Completed in 46 milliseconds