/art/runtime/ |
gtest_test.cc | 19 // Sanity test that gtest alone works on host and target 20 TEST(GTest, Nop) {}
|
/external/chromium/testing/gmock/test/ |
gmock-port_test.cc | 40 // test here to make references to symbols in the gtest library and avoid 43 TEST(DummyTest, Dummy) {}
|
/external/chromium/testing/gtest/test/ |
gtest_main_unittest.cc | 39 TEST(GTestMainTest, ShouldSucceed) {
|
gtest_help_test_.cc | 38 // and exit with 0; otherwise the following test will be executed, 40 TEST(HelpFlagTest, ShouldNotBeRun) { 45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
|
gtest_uninitialized_test_.cc | 34 TEST(DummyTest, Dummy) { 35 // This test doesn't verify anything. We just need it to create a 36 // realistic stage for testing the behavior of Google Test when
|
gtest_list_tests_unittest_.cc | 32 // Unit test for Google Test's --gtest_list_tests flag. 34 // A user can ask Google Test to list all tests that will run 38 // This program will be invoked from a Python unit test. 45 // Several different test cases and tests that will be listed. 46 TEST(Foo, Bar1) { 49 TEST(Foo, Bar2) { 52 TEST(Foo, DISABLED_Bar3) { 55 TEST(Abc, Xyz) { 58 TEST(Abc, Def) [all...] |
gtest_shuffle_test_.cc | 32 // Verifies that test shuffling works. 41 using ::testing::Test; 48 // The test methods are empty, as the sole purpose of this program is 49 // to print the test names before/after shuffling. 51 class A : public Test {}; 55 TEST(ADeathTest, A) {} 56 TEST(ADeathTest, B) {} 57 TEST(ADeathTest, C) {} 59 TEST(B, A) {} 60 TEST(B, B) { [all...] |
/external/chromium_org/testing/gtest/test/ |
gtest_main_unittest.cc | 39 TEST(GTestMainTest, ShouldSucceed) {
|
gtest_help_test_.cc | 38 // and exit with 0; otherwise the following test will be executed, 40 TEST(HelpFlagTest, ShouldNotBeRun) { 45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
|
gtest_uninitialized_test_.cc | 34 TEST(DummyTest, Dummy) { 35 // This test doesn't verify anything. We just need it to create a 36 // realistic stage for testing the behavior of Google Test when
|
gtest_list_tests_unittest_.cc | 32 // Unit test for Google Test's --gtest_list_tests flag. 34 // A user can ask Google Test to list all tests that will run 38 // This program will be invoked from a Python unit test. 45 // Several different test cases and tests that will be listed. 46 TEST(Foo, Bar1) { 49 TEST(Foo, Bar2) { 52 TEST(Foo, DISABLED_Bar3) { 55 TEST(Abc, Xyz) { 58 TEST(Abc, Def) [all...] |
gtest_shuffle_test_.cc | 32 // Verifies that test shuffling works. 41 using ::testing::Test; 47 // The test methods are empty, as the sole purpose of this program is 48 // to print the test names before/after shuffling. 50 class A : public Test {}; 54 TEST(ADeathTest, A) {} 55 TEST(ADeathTest, B) {} 56 TEST(ADeathTest, C) {} 58 TEST(B, A) {} 59 TEST(B, B) { [all...] |
/external/gtest/test/ |
gtest_main_unittest.cc | 39 TEST(GTestMainTest, ShouldSucceed) {
|
gtest_help_test_.cc | 38 // and exit with 0; otherwise the following test will be executed, 40 TEST(HelpFlagTest, ShouldNotBeRun) { 45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
|
gtest_uninitialized_test_.cc | 34 TEST(DummyTest, Dummy) { 35 // This test doesn't verify anything. We just need it to create a 36 // realistic stage for testing the behavior of Google Test when
|
gtest_list_tests_unittest_.cc | 32 // Unit test for Google Test's --gtest_list_tests flag. 34 // A user can ask Google Test to list all tests that will run 38 // This program will be invoked from a Python unit test. 45 // Several different test cases and tests that will be listed. 46 TEST(Foo, Bar1) { 49 TEST(Foo, Bar2) { 52 TEST(Foo, DISABLED_Bar3) { 55 TEST(Abc, Xyz) { 58 TEST(Abc, Def) [all...] |
gtest_shuffle_test_.cc | 32 // Verifies that test shuffling works. 41 using ::testing::Test; 48 // The test methods are empty, as the sole purpose of this program is 49 // to print the test names before/after shuffling. 51 class A : public Test {}; 55 TEST(ADeathTest, A) {} 56 TEST(ADeathTest, B) {} 57 TEST(ADeathTest, C) {} 59 TEST(B, A) {} 60 TEST(B, B) { [all...] |
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_main_unittest.cc | 39 TEST(GTestMainTest, ShouldSucceed) {
|
gtest_help_test_.cc | 38 // and exit with 0; otherwise the following test will be executed, 40 TEST(HelpFlagTest, ShouldNotBeRun) { 45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
|
gtest_uninitialized_test_.cc | 34 TEST(DummyTest, Dummy) { 35 // This test doesn't verify anything. We just need it to create a 36 // realistic stage for testing the behavior of Google Test when
|
/external/chromium_org/third_party/re2/re2/testing/ |
exhaustive_test.cc | 7 #include "util/test.h" 14 // Test very simple expressions. 15 TEST(EgrepLiterals, Lowercase) { 19 // Test mixed-case expressions. 20 TEST(EgrepLiterals, MixedCase) { 24 // Test mixed-case in case-insensitive mode. 25 TEST(EgrepLiterals, FoldCase) { 32 // Test very simple expressions. 33 TEST(EgrepLiterals, UTF8) {
|
/external/regex-re2/re2/testing/ |
exhaustive_test.cc | 7 #include "util/test.h" 14 // Test very simple expressions. 15 TEST(EgrepLiterals, Lowercase) { 19 // Test mixed-case expressions. 20 TEST(EgrepLiterals, MixedCase) { 24 // Test mixed-case in case-insensitive mode. 25 TEST(EgrepLiterals, FoldCase) { 32 // Test very simple expressions. 33 TEST(EgrepLiterals, UTF8) {
|
/external/skia/tests/ |
FitsInTest.cpp | 8 #include "Test.h" 15 #define TEST(S, s, D, expected) REPORTER_ASSERT(reporter, (SkTFitsIn<D>((S)(s)) == (expected))) 18 TEST(int32_t, 1, int8_t, true); 19 TEST(int32_t, -1, int8_t, true); 20 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::max)(), int8_t, true); 21 TEST(int32_t, ((int32_t)(std::numeric_limits<int8_t>::max)())+1, int8_t, false); 22 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::min)(), int8_t, true); 23 TEST(int32_t, (int32_t)((std::numeric_limits<int8_t>::min)())-1, int8_t, false); 25 TEST(int32_t, 1, uint8_t, true); 26 TEST(int32_t, -1, uint8_t, false) [all...] |
/external/valgrind/unittest/ |
run_output_tests.sh | 5 for TEST in "$@" 9 if [ -f output_tests/${TEST}.supp ]; then 10 SUPP=--suppressions=output_tests/${TEST}.supp 14 if [ -f output_tests/${TEST}.ignore ]; then 15 IGNORE=--ignore=output_tests/${TEST}.ignore 18 CMD="$TSAN $SUPP $IGNORE -- ./${BIN}output_tests/${TEST}-${BUILD}${EXE} 2>&1 | python match_output.py output_tests/${TEST}.tmpl"
|
/external/valgrind/main/none/tests/ |
mmap_fcntl_bug.stderr.exp | 1 Child exited with zero (TEST PASSED).
|