Skip to content

Commit

Permalink
Disable slow ProcessSingletonPosixTest tests:
Browse files Browse the repository at this point in the history
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}
  • Loading branch information
Paweł Hajdan, Jr committed Aug 25, 2014
1 parent ba2c862 commit 731044b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions chrome/browser/process_singleton_posix_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,8 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessSuccess) {
}

// Test failure case of NotifyOtherProcess().
TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessFailure) {
// Disabled, http://crbug.com/407065 .
TEST_F(ProcessSingletonPosixTest, DISABLED_NotifyOtherProcessFailure) {
CreateProcessSingletonOnThread();

BlockWorkerThread();
Expand Down Expand Up @@ -323,7 +324,8 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessHostChanged) {

// Test that we fail when lock says process is on another host and we can't
// notify it over the socket.
TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessDifferingHost) {
// Disabled, http://crbug.com/407065 .
TEST_F(ProcessSingletonPosixTest, DISABLED_NotifyOtherProcessDifferingHost) {
CreateProcessSingletonOnThread();

BlockWorkerThread();
Expand All @@ -341,7 +343,9 @@ TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessDifferingHost) {

// Test that we fail when lock says process is on another host and we can't
// notify it over the socket.
TEST_F(ProcessSingletonPosixTest, NotifyOtherProcessOrCreate_DifferingHost) {
// Disabled, http://crbug.com/407065 .
TEST_F(ProcessSingletonPosixTest,
DISABLED_NotifyOtherProcessOrCreate_DifferingHost) {
CreateProcessSingletonOnThread();

BlockWorkerThread();
Expand Down

0 comments on commit 731044b

Please sign in to comment.