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

Unified Diff: base/process_util_unittest.cc

Issue 7792062: Disable failed test GetTerminationStatusExit on Linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 4 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util_unittest.cc
===================================================================
--- base/process_util_unittest.cc (revision 99196)
+++ base/process_util_unittest.cc (working copy)
@@ -136,7 +136,14 @@
remove(kSignalFileSlow);
}
-TEST_F(ProcessUtilTest, GetTerminationStatusExit) {
+// Times out on Linux. http://crbug.com/95058
+#if defined(OS LINUX)
M-A Ruel 2011/09/01 17:12:05 #if defined(OS_LINUX) !
+#define MAYBE_GetTerminationStatusExit DISABLED_GetTerminationStatusExit
+#else
+#define MAYBE_GetTerminationStatusExit GetTerminationStatusExit
+#endif
+
+TEST_F(ProcessUtilTest, MAYBE_GetTerminationStatusExit) {
remove(kSignalFileSlow);
base::ProcessHandle handle = this->SpawnChild("SlowChildProcess", false);
ASSERT_NE(base::kNullProcessHandle, handle);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698