Commit 7bb6510a authored by yutak@chromium.org's avatar yutak@chromium.org

Disable some tests from NaClBrowserTestNonSfiMode on Linux.

They started to fail since the switch to Clang on Linux.

BUG=392768
TBR=thakis@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282267 0039d316-1c4b-4281-b951-d872f2087c98
parent 5b61a7b5
......@@ -33,15 +33,24 @@ namespace {
# define MAYBE_SysconfNprocessorsOnln SysconfNprocessorsOnln
#endif
// crbug.com/392768
#if defined(OS_LINUX)
# define MAYBE_Messaging DISABLED_Messaging
# define MAYBE_Irt DISABLED_Irt
#else
# define MAYBE_Messaging MAYBE_NONSFI(Messaging)
# define MAYBE_Irt MAYBE_NONSFI(Irt)
#endif
NACL_BROWSER_TEST_F(NaClBrowserTest, SimpleLoad, {
RunLoadTest(FILE_PATH_LITERAL("nacl_load_test.html"));
})
IN_PROC_BROWSER_TEST_F(NaClBrowserTestNonSfiMode, MAYBE_NONSFI(Messaging)) {
IN_PROC_BROWSER_TEST_F(NaClBrowserTestNonSfiMode, MAYBE_Messaging) {
RunLoadTest(FILE_PATH_LITERAL("libc_free.html"));
}
IN_PROC_BROWSER_TEST_F(NaClBrowserTestNonSfiMode, MAYBE_NONSFI(Irt)) {
IN_PROC_BROWSER_TEST_F(NaClBrowserTestNonSfiMode, MAYBE_Irt) {
RunNaClIntegrationTest(FILE_PATH_LITERAL("irt_test.html"));
}
......
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