Searched refs:GTEST_FLAG (Results 26 - 50 of 66) sorted by last modified time

123

/external/gtest/src/
H A Dgtest-internal-inl.h165 also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests);
166 break_on_failure_ = GTEST_FLAG(break_on_failure);
167 catch_exceptions_ = GTEST_FLAG(catch_exceptions);
168 color_ = GTEST_FLAG(color);
169 death_test_style_ = GTEST_FLAG(death_test_style);
170 death_test_use_fork_ = GTEST_FLAG(death_test_use_fork);
171 filter_ = GTEST_FLAG(filter);
172 internal_run_death_test_ = GTEST_FLAG(internal_run_death_test);
173 list_tests_ = GTEST_FLAG(list_tests);
174 output_ = GTEST_FLAG(outpu
[all...]
H A Dgtest.cc393 const char* const gtest_output_flag = GTEST_FLAG(output).c_str();
405 const char* const gtest_output_flag = GTEST_FLAG(output).c_str();
486 const char* const p = GTEST_FLAG(filter).c_str();
491 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
525 if (!GTEST_FLAG(catch_exceptions))
2089 // exceptions by setting GTEST_FLAG(catch_exceptions), but only before
2097 // if (GTEST_FLAG(catch_exceptions))
2586 const char* const gtest_color = GTEST_FLAG(color).c_str();
2721 if (GTEST_FLAG(repeat) != 1)
2724 const char* const filter = GTEST_FLAG(filte
[all...]
/external/gtest/test/
H A Dgtest-death-test_ex_test.cc57 << (testing::GTEST_FLAG(catch_exceptions) ? "enabled" : "disabled");
83 << (testing::GTEST_FLAG(catch_exceptions) ? "enabled" : "disabled");
91 testing::GTEST_FLAG(catch_exceptions) = GTEST_ENABLE_CATCH_EXCEPTIONS_ != 0;
H A Dgtest-death-test_test.cc352 testing::GTEST_FLAG(death_test_style) = "fast";
359 testing::GTEST_FLAG(death_test_style) = "fast";
369 testing::GTEST_FLAG(death_test_style) = "fast";
412 testing::GTEST_FLAG(death_test_style) = "fast";
421 testing::GTEST_FLAG(death_test_style) = "threadsafe";
433 testing::GTEST_FLAG(death_test_style) = "threadsafe";
438 testing::GTEST_FLAG(death_test_style) = "threadsafe";
444 testing::GTEST_FLAG(death_test_style) = "threadsafe";
451 testing::GTEST_FLAG(death_test_style) = "threadsafe";
461 testing::GTEST_FLAG(death_test_styl
[all...]
H A Dgtest-listener_test.cc215 ::testing::GTEST_FLAG(repeat) = 2;
H A Dgtest-options_test.cc70 GTEST_FLAG(output) = "";
75 GTEST_FLAG(output) = "xml:filename";
80 GTEST_FLAG(output) = "";
86 GTEST_FLAG(output) = "xml:filename.abc";
92 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
145 GTEST_FLAG(output) = "";
152 GTEST_FLAG(output) = "xml";
159 GTEST_FLAG(output) = "xml:filename.abc";
166 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
183 GTEST_FLAG(outpu
[all...]
H A Dgtest_env_var_test_.cc55 cout << GTEST_FLAG(break_on_failure);
60 cout << GTEST_FLAG(catch_exceptions);
65 cout << GTEST_FLAG(color);
70 cout << GTEST_FLAG(death_test_style);
75 cout << GTEST_FLAG(death_test_use_fork);
80 cout << GTEST_FLAG(filter);
85 cout << GTEST_FLAG(output);
90 cout << GTEST_FLAG(print_time);
95 cout << GTEST_FLAG(repeat);
100 cout << GTEST_FLAG(stack_trace_dept
[all...]
H A Dgtest_environment_test.cc181 testing::GTEST_FLAG(filter) = "-*";
H A Dgtest_output_test_.cc988 bool GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests) = false;
996 testing::GTEST_FLAG(print_time) = false;
1009 GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests) = true;
1012 if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") {
1024 if (GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests))
H A Dgtest_repeat_test.cc55 using testing::GTEST_FLAG(death_test_style);
56 using testing::GTEST_FLAG(filter);
57 using testing::GTEST_FLAG(repeat);
115 GTEST_FLAG(death_test_style) = "threadsafe";
118 GTEST_FLAG(death_test_style) = "fast";
173 GTEST_FLAG(repeat) = repeat;
183 GTEST_FLAG(repeat) = repeat;
184 GTEST_FLAG(filter) = "None";
194 GTEST_FLAG(repeat) = repeat;
195 GTEST_FLAG(filte
[all...]
H A Dgtest_throw_on_failure_ex_test.cc54 testing::GTEST_FLAG(throw_on_failure) = true;
H A Dgtest_unittest.cc41 bool dummy = testing::GTEST_FLAG(also_run_disabled_tests)
42 || testing::GTEST_FLAG(break_on_failure)
43 || testing::GTEST_FLAG(catch_exceptions)
44 || testing::GTEST_FLAG(color) != "unknown"
45 || testing::GTEST_FLAG(filter) != "unknown"
46 || testing::GTEST_FLAG(list_tests)
47 || testing::GTEST_FLAG(output) != "unknown"
48 || testing::GTEST_FLAG(print_time)
49 || testing::GTEST_FLAG(random_seed)
50 || testing::GTEST_FLAG(repea
[all...]
/external/compiler-rt/lib/asan/tests/
H A Dasan_test_main.cc16 testing::GTEST_FLAG(death_test_style) = "threadsafe";
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test_main.cc18 testing::GTEST_FLAG(death_test_style) = "threadsafe";
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_test_main.cc19 testing::GTEST_FLAG(death_test_style) = "threadsafe";
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test.cc39 testing::GTEST_FLAG(death_test_style) = "threadsafe";
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_unit_test_main.cc16 testing::GTEST_FLAG(death_test_style) = "threadsafe";
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h281 // GTEST_FLAG() - references a flag.
3016 #define GTEST_FLAG(name) FLAGS_gtest_##name macro
3019 #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
3021 GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
3023 GTEST_API_ extern ::std::string GTEST_FLAG(name)
3027 GTEST_API_ bool GTEST_FLAG(name) = (default_val)
3029 GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
3031 GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val)
7103 // assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions
8420 // initialized from the GTEST_FLAG(internal_run_death_tes
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc566 also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests);
567 break_on_failure_ = GTEST_FLAG(break_on_failure);
568 catch_exceptions_ = GTEST_FLAG(catch_exceptions);
569 color_ = GTEST_FLAG(color);
570 death_test_style_ = GTEST_FLAG(death_test_style);
571 death_test_use_fork_ = GTEST_FLAG(death_test_use_fork);
572 filter_ = GTEST_FLAG(filter);
573 internal_run_death_test_ = GTEST_FLAG(internal_run_death_test);
574 list_tests_ = GTEST_FLAG(list_tests);
575 output_ = GTEST_FLAG(outpu
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-port.h175 // GTEST_FLAG() - references a flag.
1741 #define GTEST_FLAG(name) FLAGS_gtest_##name macro
1744 #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
1746 GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
1748 GTEST_API_ extern ::testing::internal::String GTEST_FLAG(name)
1752 GTEST_API_ bool GTEST_FLAG(name) = (default_val)
1754 GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
1756 GTEST_API_ ::testing::internal::String GTEST_FLAG(name) = (default_val)
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-death-test.cc958 const bool use_fork = GTEST_FLAG(death_test_use_fork);
1070 if (GTEST_FLAG(death_test_style) == "threadsafe" ||
1071 GTEST_FLAG(death_test_style) == "fast") {
1077 if (GTEST_FLAG(death_test_style) == "threadsafe") {
1079 } else if (GTEST_FLAG(death_test_style) == "fast") {
1088 GTEST_FLAG(death_test_style).c_str()));
1182 // initialized from the GTEST_FLAG(internal_run_death_test) flag if
1185 if (GTEST_FLAG(internal_run_death_test) == "") return NULL;
1192 SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields);
1209 GTEST_FLAG(internal_run_death_tes
[all...]
H A Dgtest-internal-inl.h154 also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests);
155 break_on_failure_ = GTEST_FLAG(break_on_failure);
156 catch_exceptions_ = GTEST_FLAG(catch_exceptions);
157 color_ = GTEST_FLAG(color);
158 death_test_style_ = GTEST_FLAG(death_test_style);
159 death_test_use_fork_ = GTEST_FLAG(death_test_use_fork);
160 filter_ = GTEST_FLAG(filter);
161 internal_run_death_test_ = GTEST_FLAG(internal_run_death_test);
162 list_tests_ = GTEST_FLAG(list_tests);
163 output_ = GTEST_FLAG(outpu
[all...]
H A Dgtest.cc386 const char* const gtest_output_flag = GTEST_FLAG(output).c_str();
398 const char* const gtest_output_flag = GTEST_FLAG(output).c_str();
482 const char* const p = GTEST_FLAG(filter).c_str();
487 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
521 if (!GTEST_FLAG(catch_exceptions))
2049 // GTEST_FLAG(throw_on_failure) is true (if exceptions are enabled). We
2101 // exceptions by setting GTEST_FLAG(catch_exceptions), but only before
2109 // if (GTEST_FLAG(catch_exceptions))
2586 const char* const gtest_color = GTEST_FLAG(color).c_str();
2717 if (GTEST_FLAG(repea
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h186 // GTEST_FLAG(flag_name) - references the variable corresponding to
2393 #define GTEST_FLAG(name) FLAGS_gtest_##name macro
2396 #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
2398 GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
2400 GTEST_API_ extern ::std::string GTEST_FLAG(name)
2404 GTEST_API_ bool GTEST_FLAG(name) = (default_val)
2406 GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
2408 GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val)
/external/chromium_org/testing/gtest/src/
H A Dgtest-death-test.cc135 return !GTEST_FLAG(internal_run_death_test).empty();
139 if (GTEST_FLAG(death_test_style) == "threadsafe")
140 return !GTEST_FLAG(internal_run_death_test).empty();
1053 const bool use_fork = GTEST_FLAG(death_test_use_fork);
1182 if (GTEST_FLAG(death_test_style) == "threadsafe" ||
1183 GTEST_FLAG(death_test_style) == "fast") {
1189 if (GTEST_FLAG(death_test_style) == "threadsafe") {
1191 } else if (GTEST_FLAG(death_test_style) == "fast") {
1199 "Unknown death test style \"" + GTEST_FLAG(death_test_style)
1296 // initialized from the GTEST_FLAG(internal_run_death_tes
[all...]

Completed in 296 milliseconds

123