HomeSort by relevance Sort by last modified time
    Searched refs:TEST (Results 1 - 25 of 702) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
gtest_filter_unittest_.cc 32 // Unit test for Google Test test filters.
34 // A user can specify which test(s) in a Google Test program to run via
38 // The program will be invoked from a Python unit test. Don't run it
45 // Test case FooTest.
47 class FooTest : public testing::Test {
57 // Test case BarTest.
59 TEST(BarTest, TestOne)
    [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"
gtest_fixture_injection.h 27 // This file is a part of a test suite for ThreadSanitizer, a race detector.
31 // after running each test case.
32 // This file contains a hack that replaces the googletest TEST macro and injects
33 // a custom fixture class instead of ::testing::Test for TEST tests
34 // (i.e. those test that don't have fixtures)
37 // not ::testing::Test
40 #ifndef TEST
44 class RacecheckFixture : public ::testing::Test {
51 #undef TEST
    [all...]
  /external/protobuf/gtest/test/
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...]
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
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_filter_unittest_.cc 32 // Unit test for Google Test test filters.
34 // A user can specify which test(s) in a Google Test program to run via
38 // The program will be invoked from a Python unit test. Don't run it
45 // Test case FooTest.
47 class FooTest : public testing::Test {
57 // Test case BarTest.
59 TEST(BarTest, TestOne)
    [all...]
  /external/gtest/test/
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
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.
46 // Several different test cases and tests that will be listed.
47 TEST(Foo, Bar1) {
50 TEST(Foo, Bar2) {
53 TEST(Foo, Bar3) {
56 TEST(Abc, Xyz) {
59 TEST(Abc, Def)
    [all...]
gtest_filter_unittest_.cc 32 // Unit test for Google Test test filters.
34 // A user can specify which test(s) in a Google Test program to run via
38 // The program will be invoked from a Python unit test. Don't run it
46 // Test case FooTest.
48 class FooTest : public testing::Test {
59 // Test case BarTest.
61 TEST(BarTest, TestOne)
    [all...]
gtest-message_test.cc 53 TEST(MessageTest, DefaultConstructor) {
59 TEST(MessageTest, CopyConstructor) {
66 TEST(MessageTest, ConstructsFromCString) {
72 TEST(MessageTest, StreamsPointer) {
79 TEST(MessageTest, StreamsNullPointer) {
85 TEST(MessageTest, StreamsCString) {
90 TEST(MessageTest, StreamsNullCString) {
100 // test this where std::string can be used.
101 TEST(MessageTest, StreamsString) {
107 TEST(MessageTest, StreamsStringWithEmbeddedNUL)
    [all...]
  /external/clang/test/Sema/
__try.c 6 #define TEST TEST2(test)
28 void TEST() {
43 void TEST() {
49 void TEST() {
55 void TEST() {
59 void TEST() {
67 void TEST() {
76 void TEST() {
106 void TEST() {
    [all...]
  /external/bluetooth/glib/tests/
date-test.c 16 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
70 TEST("sizeof(GDate) is not more than 8 bytes on this platform", sizeof(GDate) < 9);
74 TEST("Empty constructor produces invalid date", !g_date_valid(d));
80 TEST("January 1, Year 1 created and valid", g_date_valid(d));
84 TEST("January 1, Year 1 is Julian date 1", j == 1);
86 TEST("Returned month is January", g_date_get_month(d) == G_DATE_JANUARY);
87 TEST("Returned day is 1", g_date_get_day(d) == 1);
88 TEST("Returned year is 1", g_date_get_year(d) == 1);
90 TEST("Bad month is invalid", !g_date_valid_month(G_DATE_BAD_MONTH));
91 TEST("Month 13 is invalid", !g_date_valid_month(13))
    [all...]
testgdate.c 19 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
77 TEST("sizeof(GDate) is not more than 8 bytes on this platform", sizeof(GDate) < 9);
81 TEST("Empty constructor produces invalid date", !g_date_valid(d));
87 TEST("January 1, Year 1 created and valid", g_date_valid(d));
91 TEST("January 1, Year 1 is Julian date 1", j == 1);
93 TEST("Returned month is January", g_date_get_month(d) == G_DATE_JANUARY);
94 TEST("Returned day is 1", g_date_get_day(d) == 1);
95 TEST("Returned year is 1", g_date_get_year(d) == 1);
97 TEST("Bad month is invalid", !g_date_valid_month(G_DATE_BAD_MONTH));
98 TEST("Month 13 is invalid", !g_date_valid_month(13))
    [all...]
  /external/clang/test/CodeGen/
2003-11-19-AddressOfRegister.c 7 int TEST(int nt) {

Completed in 5834 milliseconds

1 2 3 4 5 6 7 8 91011>>