aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2005-11-02 18:06:28 +0000
committerJohn Criswell <criswell@uiuc.edu>2005-11-02 18:06:28 +0000
commitb3606baab842005d0ebc828620dfb6d12c3dd6b4 (patch)
tree06b2933513d3e108efe3ec626fc7064c0c2132e3
parentcfa435f79bf39fead32263a8b71c9ae440b55214 (diff)
Don't use -q; this option is not available on Solaris grep (and probably
other, traditional UNIX greps). git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_16@24156 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/ExecutionEngine/parallel.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ExecutionEngine/parallel.ll b/test/ExecutionEngine/parallel.ll
index 6dc3f760d9..9f55d3dda4 100644
--- a/test/ExecutionEngine/parallel.ll
+++ b/test/ExecutionEngine/parallel.ll
@@ -1,3 +1,3 @@
; This isn't really an assembly file. This test runs the ParallelJIT example
; program and ensures its output is sane.
-; RUN: ParallelJIT | grep -q "Fib2 returned 267914296"
+; RUN: ParallelJIT | grep "Fib2 returned 267914296"