Searched refs:GTEST_FLAG (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
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-port.h176 // GTEST_FLAG() - references a flag.
1746 #define GTEST_FLAG(name) FLAGS_gtest_##name macro
1749 #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
1751 GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
1753 GTEST_API_ extern ::testing::internal::String GTEST_FLAG(name)
1757 GTEST_API_ bool GTEST_FLAG(name) = (default_val)
1759 GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
1761 GTEST_API_ ::testing::internal::String GTEST_FLAG(name) = (default_val)
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/
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))
2558 const char* const gtest_color = GTEST_FLAG(color).c_str();
2689 if (GTEST_FLAG(repea
[all...]
H A Dgtest-death-test.cc957 const bool use_fork = GTEST_FLAG(death_test_use_fork);
1069 if (GTEST_FLAG(death_test_style) == "threadsafe" ||
1070 GTEST_FLAG(death_test_style) == "fast") {
1076 if (GTEST_FLAG(death_test_style) == "threadsafe") {
1078 } else if (GTEST_FLAG(death_test_style) == "fast") {
1087 GTEST_FLAG(death_test_style).c_str()));
1181 // initialized from the GTEST_FLAG(internal_run_death_test) flag if
1184 if (GTEST_FLAG(internal_run_death_test) == "") return NULL;
1191 SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields);
1208 GTEST_FLAG(internal_run_death_tes
[all...]

Completed in 189 milliseconds