Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: base/test/run_all_unittests.cc

Issue 1545473002: Revert Active Verifier tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/debug/close_handle_hook_win.cc ('k') | base/win/scoped_handle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/run_all_unittests.cc
diff --git a/base/test/run_all_unittests.cc b/base/test/run_all_unittests.cc
index 84e6d3f9dae55f6b48a8b7aa6890c18a8eb4e453..e5c59752cdd4223085d8f5c89a0b4c4a39655c22 100644
--- a/base/test/run_all_unittests.cc
+++ b/base/test/run_all_unittests.cc
@@ -11,24 +11,13 @@
#include "base/test/test_file_util.h"
#endif
-#if defined(OS_WIN)
-#include "base/debug/close_handle_hook_win.h"
-#endif
-
int main(int argc, char** argv) {
#if defined(OS_ANDROID)
JNIEnv* env = base::android::AttachCurrentThread();
base::RegisterContentUriTestUtils(env);
#endif
base::TestSuite test_suite(argc, argv);
-#if defined(OS_WIN)
- base::debug::InstallHandleHooks();
-#endif
- int ret = base::LaunchUnitTests(
+ return base::LaunchUnitTests(
argc, argv,
base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite)));
-#if defined(OS_WIN)
- base::debug::RemoveHandleHooks();
-#endif
- return ret;
}
« no previous file with comments | « base/debug/close_handle_hook_win.cc ('k') | base/win/scoped_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698