HomeSort by relevance Sort by last modified time
    Searched refs:GTEST_FLAG (Results 1 - 12 of 12) sorted by null

  /external/gtest/test/
gtest_env_var_test_.cc 55 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_depth)
    [all...]
gtest_repeat_test.cc 55 using testing::GTEST_FLAG(death_test_style);
56 using testing::GTEST_FLAG(filter);
57 using testing::GTEST_FLAG(repeat);
116 GTEST_FLAG(death_test_style) = "threadsafe";
119 GTEST_FLAG(death_test_style) = "fast";
175 GTEST_FLAG(repeat) = repeat;
185 GTEST_FLAG(repeat) = repeat;
186 GTEST_FLAG(filter) = "None";
196 GTEST_FLAG(repeat) = repeat;
197 GTEST_FLAG(filter) = "*-*ShouldFail"
    [all...]
gtest-options_test.cc 70 GTEST_FLAG(output) = "";
75 GTEST_FLAG(output) = "xml:filename";
80 GTEST_FLAG(output) = "";
86 GTEST_FLAG(output) = "xml:filename.abc";
93 GTEST_FLAG(output) = "xml:path\\";
107 GTEST_FLAG(output) = "xml:path/";
175 GTEST_FLAG(output) = "";
182 GTEST_FLAG(output) = "xml";
189 GTEST_FLAG(output) = "xml:filename.abc";
197 GTEST_FLAG(output) = "xml:path\\"
    [all...]
gtest_throw_on_failure_ex_test.cc 54 testing::GTEST_FLAG(throw_on_failure) = true;
gtest_unittest.cc 41 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(repeat) > 0
50 || testing::GTEST_FLAG(show_internal_stack_frames
    [all...]
gtest-death-test_test.cc 339 testing::GTEST_FLAG(death_test_style) = "fast";
346 testing::GTEST_FLAG(death_test_style) = "fast";
362 testing::GTEST_FLAG(death_test_style) = "fast";
374 testing::GTEST_FLAG(death_test_style) = "threadsafe";
379 testing::GTEST_FLAG(death_test_style) = "threadsafe";
385 testing::GTEST_FLAG(death_test_style) = "threadsafe";
392 testing::GTEST_FLAG(death_test_style) = "threadsafe";
402 testing::GTEST_FLAG(death_test_style) = "threadsafe";
404 testing::GTEST_FLAG(death_test_style) = "fast";
421 if (!testing::GTEST_FLAG(death_test_use_fork))
    [all...]
gtest_environment_test.cc 175 testing::GTEST_FLAG(filter) = "-*";
gtest_output_test_.cc 985 GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests) = true;
988 if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") {
1007 if (GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests))
  /external/gtest/src/
gtest-internal-inl.h 96 also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests);
97 break_on_failure_ = GTEST_FLAG(break_on_failure);
98 catch_exceptions_ = GTEST_FLAG(catch_exceptions);
99 color_ = GTEST_FLAG(color);
100 death_test_style_ = GTEST_FLAG(death_test_style);
101 death_test_use_fork_ = GTEST_FLAG(death_test_use_fork);
102 filter_ = GTEST_FLAG(filter);
103 internal_run_death_test_ = GTEST_FLAG(internal_run_death_test);
104 list_tests_ = GTEST_FLAG(list_tests);
105 output_ = GTEST_FLAG(output)
    [all...]
gtest.cc 333 const char* const gtest_output_flag = GTEST_FLAG(output).c_str();
345 const char* const gtest_output_flag = GTEST_FLAG(output).c_str();
429 const char* const p = GTEST_FLAG(filter).c_str();
434 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
459 return (GTEST_FLAG(catch_exceptions) &&
    [all...]
gtest-death-test.cc     [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 140 // GTEST_FLAG() - references a flag.
871 #define GTEST_FLAG(name) FLAGS_gtest_##name
874 #define GTEST_DECLARE_bool_(name) extern bool GTEST_FLAG(name)
876 extern ::testing::internal::Int32 GTEST_FLAG(name)
878 extern ::testing::internal::String GTEST_FLAG(name)
882 bool GTEST_FLAG(name) = (default_val)
884 ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
886 ::testing::internal::String GTEST_FLAG(name) = (default_val)

Completed in 91 milliseconds