diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-05 12:38:26 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-05 12:38:26 +0000 |
commit | 1f33167b31b15c86fc1bc118febd152a6fd6fcc0 (patch) | |
tree | f049c1535edfc50671ba821cc93d04ff990b1e16 | |
parent | 6a42be27b8d00196896c3fbcf6de93e001ef4343 (diff) |
Temporary test files should use %t.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81086 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Feature/float.ll | 6 | ||||
-rw-r--r-- | test/Feature/inlineasm.ll | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/test/Feature/float.ll b/test/Feature/float.ll index 632cfb741f..6c6c5dd539 100644 --- a/test/Feature/float.ll +++ b/test/Feature/float.ll @@ -1,6 +1,6 @@ -; RUN: llvm-as < %s | llvm-dis > t1.ll -; RUN: llvm-as t1.ll -o - | llvm-dis > t2.ll -; RUN: diff t1.ll t2.ll +; RUN: llvm-as < %s | llvm-dis > %t1.ll +; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll +; RUN: diff %t1.ll %t2.ll @F1 = global float 0x4010000000000000 @D1 = global double 0x4010000000000000 diff --git a/test/Feature/inlineasm.ll b/test/Feature/inlineasm.ll index e4318f775b..6be5722abf 100644 --- a/test/Feature/inlineasm.ll +++ b/test/Feature/inlineasm.ll @@ -1,6 +1,6 @@ -; RUN: llvm-as < %s | llvm-dis > t1.ll -; RUN: llvm-as t1.ll -o - | llvm-dis > t2.ll -; RUN: diff t1.ll t2.ll +; RUN: llvm-as < %s | llvm-dis > %t1.ll +; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll +; RUN: diff %t1.ll %t2.ll module asm "this is an inline asm block" module asm "this is another inline asm block" |