summaryrefslogtreecommitdiffstats
path: root/chromium/net/test/scoped_disable_exit_on_dfatal.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/test/scoped_disable_exit_on_dfatal.h')
-rw-r--r--chromium/net/test/scoped_disable_exit_on_dfatal.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/chromium/net/test/scoped_disable_exit_on_dfatal.h b/chromium/net/test/scoped_disable_exit_on_dfatal.h
new file mode 100644
index 00000000000..5df8ff75b97
--- /dev/null
+++ b/chromium/net/test/scoped_disable_exit_on_dfatal.h
@@ -0,0 +1,39 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_QUIC_TEST_TOOLS_SCOPED_DISABLE_EXIT_ON_DFATAL_H_
+#define NET_QUIC_TEST_TOOLS_SCOPED_DISABLE_EXIT_ON_DFATAL_H_
+
+#include "base/logging.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace net {
+namespace test {
+
+
+// The ScopedDisableExitOnDFatal class is used to disable exiting the
+// program when we encounter a LOG(DFATAL) within the current block.
+// After we leave the current block, the default behavior is
+// restored.
+class ScopedDisableExitOnDFatal {
+ public:
+ ScopedDisableExitOnDFatal();
+ ~ScopedDisableExitOnDFatal();
+
+ private:
+ // Currently active instance.
+ static ScopedDisableExitOnDFatal* g_instance_;
+
+ // Static function which is set as the logging assert handler.
+ // Called when there is a check failure.
+ static void LogAssertHandler(const std::string& msg);
+
+ DISALLOW_COPY_AND_ASSIGN(ScopedDisableExitOnDFatal);
+};
+
+} // namespace test
+} // namespace net
+
+#endif // NET_QUIC_TEST_TOOLS_SCOPED_DISABLE_EXIT_ON_DFATAL_H_