Commit 731044b9 authored by Paweł Hajdan, Jr's avatar Paweł Hajdan, Jr

Disable slow ProcessSingletonPosixTest tests:

ProcessSingletonPosixTest.NotifyOtherProcessDifferingHost
ProcessSingletonPosixTest.NotifyOtherProcessFailure
ProcessSingletonPosixTest.NotifyOtherProcessOrCreate_DifferingHost

TBR=mattm

BUG=407065

Review URL: https://codereview.chromium.org/504783002

Cr-Commit-Position: refs/heads/master@{#291668}
parent ba2c8624
...@@ -277,7 +277,8 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessSuccess) { ...@@ -277,7 +277,8 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessSuccess) {
} }
// Test failure case of NotifyOtherProcess(). // Test failure case of NotifyOtherProcess().
TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessFailure) { // Disabled, http://crbug.com/407065 .
TEST_F(ProcessSingletonPosixTest, DISABLED_NotifyOtherProcessFailure) {
CreateProcessSingletonOnThread(); CreateProcessSingletonOnThread();
BlockWorkerThread(); BlockWorkerThread();
...@@ -323,7 +324,8 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessHostChanged) { ...@@ -323,7 +324,8 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessHostChanged) {
// Test that we fail when lock says process is on another host and we can't // Test that we fail when lock says process is on another host and we can't
// notify it over the socket. // notify it over the socket.
TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessDifferingHost) { // Disabled, http://crbug.com/407065 .
TEST_F(ProcessSingletonPosixTest, DISABLED_NotifyOtherProcessDifferingHost) {
CreateProcessSingletonOnThread(); CreateProcessSingletonOnThread();
BlockWorkerThread(); BlockWorkerThread();
...@@ -341,7 +343,9 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessDifferingHost) { ...@@ -341,7 +343,9 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessDifferingHost) {
// Test that we fail when lock says process is on another host and we can't // Test that we fail when lock says process is on another host and we can't
// notify it over the socket. // notify it over the socket.
TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessOrCreate_DifferingHost) { // Disabled, http://crbug.com/407065 .
TEST_F(ProcessSingletonPosixTest,
DISABLED_NotifyOtherProcessOrCreate_DifferingHost) {
CreateProcessSingletonOnThread(); CreateProcessSingletonOnThread();
BlockWorkerThread(); BlockWorkerThread();
......
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