diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-08 22:57:49 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-08 22:57:49 +0000 |
commit | 9c7a988e3b014ed56e6765f9ceb68d80d56414c0 (patch) | |
tree | ce8a83d128369dc8572b5b3d6421f71ec8d13577 /test | |
parent | 2ba62ef7f201b2e8f61c6988e76b40c7c8a6a191 (diff) |
Use "opt < %s" instead of "opt %s" so that opt doesn't print the test
filename in the output, which interferes with the tests' grep lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81263 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Feature/weak_constant.ll | 2 | ||||
-rw-r--r-- | test/Transforms/IndVarSimplify/masked-iv.ll | 2 | ||||
-rw-r--r-- | test/Transforms/InstCombine/or-to-xor.ll | 4 | ||||
-rw-r--r-- | test/Transforms/Reassociate/inverses.ll | 2 | ||||
-rw-r--r-- | test/Transforms/SCCP/apint-basictest4.ll | 6 |
5 files changed, 8 insertions, 8 deletions
diff --git a/test/Feature/weak_constant.ll b/test/Feature/weak_constant.ll index fde155175a..9025aaac79 100644 --- a/test/Feature/weak_constant.ll +++ b/test/Feature/weak_constant.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -std-compile-opts -S > %t +; RUN: opt < %s -std-compile-opts -S > %t ; RUN: grep undef %t | count 1 ; RUN: grep 5 %t | count 1 ; RUN: grep 7 %t | count 1 diff --git a/test/Transforms/IndVarSimplify/masked-iv.ll b/test/Transforms/IndVarSimplify/masked-iv.ll index 0138852224..f1f5af96eb 100644 --- a/test/Transforms/IndVarSimplify/masked-iv.ll +++ b/test/Transforms/IndVarSimplify/masked-iv.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -indvars -S > %t +; RUN: opt < %s -indvars -S > %t ; RUN: not grep trunc %t ; RUN: grep and %t | count 1 diff --git a/test/Transforms/InstCombine/or-to-xor.ll b/test/Transforms/InstCombine/or-to-xor.ll index 7cab5430d6..1495ee4970 100644 --- a/test/Transforms/InstCombine/or-to-xor.ll +++ b/test/Transforms/InstCombine/or-to-xor.ll @@ -1,5 +1,5 @@ -; RUN: opt %s -instcombine -S | grep {xor i32 %a, %b} | count 4 -; RUN: opt %s -instcombine -S | not grep {and} +; RUN: opt < %s -instcombine -S | grep {xor i32 %a, %b} | count 4 +; RUN: opt < %s -instcombine -S | not grep {and} define i32 @func1(i32 %a, i32 %b) nounwind readnone { entry: diff --git a/test/Transforms/Reassociate/inverses.ll b/test/Transforms/Reassociate/inverses.ll index fecab3d22d..fa1a4bd1d0 100644 --- a/test/Transforms/Reassociate/inverses.ll +++ b/test/Transforms/Reassociate/inverses.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -reassociate -dce -S | \ +; RUN: opt < %s -reassociate -dce -S | \ ; RUN: not grep {\\(and\\|sub\\)} define i32 @test1(i32 %a, i32 %b) { diff --git a/test/Transforms/SCCP/apint-basictest4.ll b/test/Transforms/SCCP/apint-basictest4.ll index 97a33f4b87..41036ea002 100644 --- a/test/Transforms/SCCP/apint-basictest4.ll +++ b/test/Transforms/SCCP/apint-basictest4.ll @@ -2,9 +2,9 @@ ; logic operations. -; RUN: opt %s -sccp -S | not grep and -; RUN: opt %s -sccp -S | not grep trunc -; RUN: opt %s -sccp -S | grep {ret i100 -1} +; RUN: opt < %s -sccp -S | not grep and +; RUN: opt < %s -sccp -S | not grep trunc +; RUN: opt < %s -sccp -S | grep {ret i100 -1} define i100 @test(i133 %A) { %B = and i133 0, %A |