diff options
author | kosak <kosak@google.com> | 2015-07-14 21:49:27 +0000 |
---|---|---|
committer | kosak <kosak@google.com> | 2015-07-14 21:49:27 +0000 |
commit | 38dd7485c0bec2720c75789f26f5d549e9b4a541 (patch) | |
tree | 56acd5e60d21c8130bcfad0e1dd6c7e7b101a33f /src | |
parent | f025eba07ba75b7fc059838d58880e661dea577a (diff) | |
download | googletest-38dd7485c0bec2720c75789f26f5d549e9b4a541.tar.gz googletest-38dd7485c0bec2720c75789f26f5d549e9b4a541.tar.bz2 googletest-38dd7485c0bec2720c75789f26f5d549e9b4a541.zip |
Change GetDefaultFilter to allow for the injection of a custom filter.
Diffstat (limited to 'src')
-rw-r--r-- | src/gtest.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gtest.cc b/src/gtest.cc index 8b767074..6dea6c6a 100644 --- a/src/gtest.cc +++ b/src/gtest.cc @@ -189,6 +189,12 @@ bool g_help_flag = false; } // namespace internal static const char* GetDefaultFilter() { +#ifdef GTEST_TEST_FILTER_ENV_VAR_ + const char* const testbridge_test_only = getenv(GTEST_TEST_FILTER_ENV_VAR_); + if (testbridge_test_only != NULL) { + return testbridge_test_only; + } +#endif // GTEST_TEST_FILTER_ENV_VAR_ return kUniversalFilter; } |