diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 17:36:08 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 17:36:08 +0000 |
commit | eb1d74e0c8b2c08b98e9175be137ec4ae617a8b7 (patch) | |
tree | 369be5c4e0bcec5a0a48cba3f45020ecda6b42db /test/Feature | |
parent | 725aed34076e70aa30a7a8d2ae3a44e6eef02410 (diff) | |
download | external_llvm-eb1d74e0c8b2c08b98e9175be137ec4ae617a8b7.zip external_llvm-eb1d74e0c8b2c08b98e9175be137ec4ae617a8b7.tar.gz external_llvm-eb1d74e0c8b2c08b98e9175be137ec4ae617a8b7.tar.bz2 |
For PR1319:
Remove && from the end of the lines to prevent tests from throwing run
lines into the background. Also, clean up places where the same command
is run multiple times by using a temporary file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36142 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/fold-fpcast.ll | 1 | ||||
-rw-r--r-- | test/Feature/forwardreftest.ll | 1 | ||||
-rw-r--r-- | test/Feature/inlineasm.ll | 6 |
3 files changed, 3 insertions, 5 deletions
diff --git a/test/Feature/fold-fpcast.ll b/test/Feature/fold-fpcast.ll index fc90a66..65759b5 100644 --- a/test/Feature/fold-fpcast.ll +++ b/test/Feature/fold-fpcast.ll @@ -1,4 +1,3 @@ -; RUN: llvm-upgrade < %s | llvm-as | llvm-dis -o /dev/null -f && ; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | not grep bitcast int %test1() { diff --git a/test/Feature/forwardreftest.ll b/test/Feature/forwardreftest.ll index 59dff0e..edb1f28 100644 --- a/test/Feature/forwardreftest.ll +++ b/test/Feature/forwardreftest.ll @@ -1,4 +1,3 @@ -; RUN: llvm-upgrade < %s | llvm-as | llvm-dis -o /dev/null -f && ; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > %t1.ll ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll diff --git a/test/Feature/inlineasm.ll b/test/Feature/inlineasm.ll index c34324a..c8f59f2 100644 --- a/test/Feature/inlineasm.ll +++ b/test/Feature/inlineasm.ll @@ -1,6 +1,6 @@ -; RUN: llvm-upgrade %s -o - | llvm-as -o /dev/null -f && -; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > Output/t1.ll && -; RUN: llvm-as Output/t1.ll -o - | llvm-dis > Output/t2.ll && +; RUN: llvm-upgrade %s -o - | llvm-as -o /dev/null -f +; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > Output/t1.ll +; RUN: llvm-as Output/t1.ll -o - | llvm-dis > Output/t2.ll ; RUN: diff Output/t1.ll Output/t2.ll |