summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorjschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-12 22:07:35 +0000
committerjschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-12 22:07:35 +0000
commit2121e9660ad13c25b3b0eec4c87933ee22507417 (patch)
tree58c0287fd02d108ed2ea1e48058930a16cfe1251 /base
parent435bc4039f0eab39c7de808baf728b5ca11aaded (diff)
downloadchromium_src-2121e9660ad13c25b3b0eec4c87933ee22507417.zip
chromium_src-2121e9660ad13c25b3b0eec4c87933ee22507417.tar.gz
chromium_src-2121e9660ad13c25b3b0eec4c87933ee22507417.tar.bz2
Disable ProcessUtilTest.GetTerminationStatusCrash on Win64 bots
It passes locally but fails on the bots. Disabling for now. BUG=175753 Review URL: https://chromiumcodereview.appspot.com/12217139 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182034 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/process_util_unittest.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/base/process_util_unittest.cc b/base/process_util_unittest.cc
index 309b87c..f8dd77f 100644
--- a/base/process_util_unittest.cc
+++ b/base/process_util_unittest.cc
@@ -257,7 +257,8 @@ MULTIPROCESS_TEST_MAIN(CrashingChildProcess) {
// This test intentionally crashes, so we don't need to run it under
// AddressSanitizer.
-#if defined(ADDRESS_SANITIZER)
+// TODO(jschuh): crbug.com/175753 Fix this in Win64 bots.
+#if defined(ADDRESS_SANITIZER) || (defined(OS_WIN) && defined(ARCH_CPU_X86_64))
#define MAYBE_GetTerminationStatusCrash DISABLED_GetTerminationStatusCrash
#else
#define MAYBE_GetTerminationStatusCrash GetTerminationStatusCrash