summaryrefslogtreecommitdiffstats
path: root/chrome/common/service_process_util_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/service_process_util_unittest.cc')
-rw-r--r--chrome/common/service_process_util_unittest.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/chrome/common/service_process_util_unittest.cc b/chrome/common/service_process_util_unittest.cc
index 89bd230..d3a9b64 100644
--- a/chrome/common/service_process_util_unittest.cc
+++ b/chrome/common/service_process_util_unittest.cc
@@ -29,6 +29,13 @@
#include <glib.h>
#endif
+#if defined(TOUCH_UI)
+// This test fails http://crbug/84854
+#define MAYBE_ForceShutdown FAILS_ForceShutdown
+#else
+#define MAYBE_ForceShutdown ForceShutdown
+#endif
+
namespace {
bool g_good_shutdown = false;
@@ -166,7 +173,7 @@ TEST_F(ServiceProcessStateTest, SharedMem) {
ASSERT_EQ(base::GetCurrentProcId(), pid);
}
-TEST_F(ServiceProcessStateTest, ForceShutdown) {
+TEST_F(ServiceProcessStateTest, MAYBE_ForceShutdown) {
base::ProcessHandle handle = SpawnChild("ServiceProcessStateTestShutdown",
true);
ASSERT_TRUE(handle);