From ecf4fa27442a45ff1903c0d98c5eb5c5fbd982b2 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Mon, 28 Jul 2008 19:09:01 +0000 Subject: [PATCH] Test this differently: I saw this test fail because opt exited while llvm-as was still writing to the pipe, causing it to get a SIGPIPE. It seems best to change things to avoid the race altogether. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54138 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Other/invalid-commandline-option.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Other/invalid-commandline-option.ll b/test/Other/invalid-commandline-option.ll index cef09b9b6bb..60840fa010a 100644 --- a/test/Other/invalid-commandline-option.ll +++ b/test/Other/invalid-commandline-option.ll @@ -1,3 +1,3 @@ -; RUN: llvm-as < /dev/null | not opt --foo >& /dev/null +; RUN: not opt --foo |& grep {Unknown command line argument} ; there is no --foo -- 2.34.1