summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/gtest.h
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-08-31 15:21:57 (GMT)
committerGitHub <noreply@github.com>2018-08-31 15:21:57 (GMT)
commit2fe3bd994b3189899d93f1d5a881e725e046fdc2 (patch)
treeb3d198082be63f1de097a2ab503aeb51db019706 /googletest/include/gtest/gtest.h
parent4005388b3b48e29e91ccd648addaa10ded1b5bf0 (diff)
parentd615eebd9f056ca32c65b6971116a964f1e86230 (diff)
downloadgoogletest-release-1.8.1.zip
googletest-release-1.8.1.tar.gz
googletest-release-1.8.1.tar.bz2
Merge pull request #1433 from dsacre/fix-clang-warningsrelease-1.8.1
Fix Clang warnings
Diffstat (limited to 'googletest/include/gtest/gtest.h')
-rw-r--r--googletest/include/gtest/gtest.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/googletest/include/gtest/gtest.h b/googletest/include/gtest/gtest.h
index 2be8b11..5df4b0a 100644
--- a/googletest/include/gtest/gtest.h
+++ b/googletest/include/gtest/gtest.h
@@ -116,6 +116,10 @@ GTEST_DECLARE_string_(color);
// the tests to run. If the filter is not given all tests are executed.
GTEST_DECLARE_string_(filter);
+// This flag controls whether Google Test installs a signal handler that dumps
+// debugging information when fatal signals are raised.
+GTEST_DECLARE_bool_(install_failure_signal_handler);
+
// This flag causes the Google Test to list tests. None of the tests listed
// are actually run if the flag is provided.
GTEST_DECLARE_bool_(list_tests);
@@ -159,6 +163,10 @@ GTEST_DECLARE_bool_(throw_on_failure);
// the specified host machine.
GTEST_DECLARE_string_(stream_result_to);
+#if GTEST_USE_OWN_FLAGFILE_FLAG_
+GTEST_DECLARE_string_(flagfile);
+#endif // GTEST_USE_OWN_FLAGFILE_FLAG_
+
// The upper limit for valid stack trace depths.
const int kMaxStackTraceDepth = 100;