Commit 7800f4b1 authored by John Abd-El-Malek's avatar John Abd-El-Malek

Disable NaClBrowserTestNewlib.IrtException on Windows to see if that gets rid...

Disable NaClBrowserTestNewlib.IrtException on Windows to see if that gets rid of the hung browser test binaries.

BUG=416272
TBR=uekawa@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#295898}
parent 3c157d3a
......@@ -122,7 +122,13 @@ IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnaclNonSfi,
RunNaClIntegrationTest(FILE_PATH_LITERAL("irt_manifest_file_test.html"));
}
IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlib, IrtException) {
#if defined(OS_WIN)
// http://crbug.com/416272
#define MAYBE_IrtException DISABLED_IrtException
#else
#define MAYBE_IrtException IrtException
#endif
IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlib, MAYBE_IrtException) {
RunNaClIntegrationTest(FILE_PATH_LITERAL("irt_exception_test.html"));
}
IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnaclNonSfi,
......
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