From 3c63fce628ccee1f41c9c3a1ff693042ce094503 Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Fri, 11 Jun 2021 16:44:55 -0700 Subject: Temorary skip test cases that fail on Linux PiperOrigin-RevId: 378974239 --- test/syscalls/linux/exec.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/syscalls/linux') diff --git a/test/syscalls/linux/exec.cc b/test/syscalls/linux/exec.cc index c5acfc794..e0f3779a2 100644 --- a/test/syscalls/linux/exec.cc +++ b/test/syscalls/linux/exec.cc @@ -278,6 +278,9 @@ TEST(ExecTest, InterpreterScriptArgNUL) { // Trailing whitespace following interpreter path is ignored. TEST(ExecTest, InterpreterScriptTrailingWhitespace) { + // FIXME(b/190850365): This test case fails on Linux. + SKIP_IF(!IsRunningOnGvisor()); + // Symlink through /tmp to ensure the path is short enough. TempPath link = ASSERT_NO_ERRNO_AND_VALUE( TempPath::CreateSymlinkTo("/tmp", RunfilePath(kBasicWorkload))); @@ -303,6 +306,9 @@ TEST(ExecTest, InterpreterScriptArgWhitespace) { } TEST(ExecTest, InterpreterScriptNoPath) { + // FIXME(b/190850365): This test case fails on Linux. + SKIP_IF(!IsRunningOnGvisor()); + TempPath script = ASSERT_NO_ERRNO_AND_VALUE( TempPath::CreateFileWith(GetAbsoluteTestTmpdir(), "#!", 0755)); -- cgit v1.2.3