Commit 06d88933 authored by Kim Paulhamus's avatar Kim Paulhamus Committed by Commit Bot

Disable flaky LifecycleTest (Exe_TerminateProcess) on Fuchsia

TBR: jam@chromium.org
Bug: 863166
Change-Id: I9e31154c0ba8cdc5fff7af5130c8a06029a4bdaa
Reviewed-on: https://chromium-review.googlesource.com/1136029
Commit-Queue: Kim Paulhamus <kpaulhamus@chromium.org>
Reviewed-by: default avatarKim Paulhamus <kpaulhamus@chromium.org>
Cr-Commit-Position: refs/heads/master@{#574942}
parent 8d96473d
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include "base/memory/ptr_util.h" #include "base/memory/ptr_util.h"
#include "base/process/process.h" #include "base/process/process.h"
#include "base/run_loop.h" #include "base/run_loop.h"
#include "build/build_config.h"
#include "mojo/public/cpp/bindings/binding.h" #include "mojo/public/cpp/bindings/binding.h"
#include "services/service_manager/public/cpp/identity.h" #include "services/service_manager/public/cpp/identity.h"
#include "services/service_manager/public/cpp/service_test.h" #include "services/service_manager/public/cpp/service_test.h"
...@@ -416,7 +417,12 @@ TEST_F(LifecycleTest, Exe_GracefulQuit) { ...@@ -416,7 +417,12 @@ TEST_F(LifecycleTest, Exe_GracefulQuit) {
process.Terminate(9, true); process.Terminate(9, true);
} }
TEST_F(LifecycleTest, Exe_TerminateProcess) { #if defined(OS_FUCHSIA)
#define MAYBE_Exe_TerminateProcess DISABLED_Exe_TerminateProcess
#else
#define MAYBE_Exe_TerminateProcess Exe_TerminateProcess
#endif
TEST_F(LifecycleTest, MAYBE_Exe_TerminateProcess) {
base::Process process = LaunchProcess(); base::Process process = LaunchProcess();
test::mojom::LifecycleControlPtr lifecycle = ConnectTo(kTestExeName); test::mojom::LifecycleControlPtr lifecycle = ConnectTo(kTestExeName);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment