Commit 2121e966 authored by jschuh@chromium.org's avatar jschuh@chromium.org

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
parent 435bc403
...@@ -257,7 +257,8 @@ MULTIPROCESS_TEST_MAIN(CrashingChildProcess) { ...@@ -257,7 +257,8 @@ MULTIPROCESS_TEST_MAIN(CrashingChildProcess) {
// This test intentionally crashes, so we don't need to run it under // This test intentionally crashes, so we don't need to run it under
// AddressSanitizer. // 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 #define MAYBE_GetTerminationStatusCrash DISABLED_GetTerminationStatusCrash
#else #else
#define MAYBE_GetTerminationStatusCrash GetTerminationStatusCrash #define MAYBE_GetTerminationStatusCrash GetTerminationStatusCrash
......
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