diff options
author | John Criswell <criswell@uiuc.edu> | 2003-09-26 13:58:44 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-09-26 13:58:44 +0000 |
commit | aecbd278feaa8c2a584e0a23879d7f60946c104b (patch) | |
tree | 7a988006cda07c8878b9ade9fc8282fdad429c20 | |
parent | 6775392c3df70496e88acea20a4493c9893232ec (diff) |
Modified the test so that it puts temporary files into the temporary directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8717 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Assembler/2002-04-07-HexFloatConstants.llx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Assembler/2002-04-07-HexFloatConstants.llx b/test/Assembler/2002-04-07-HexFloatConstants.llx index f740c28ceb..04a1b463c4 100644 --- a/test/Assembler/2002-04-07-HexFloatConstants.llx +++ b/test/Assembler/2002-04-07-HexFloatConstants.llx @@ -5,9 +5,9 @@ ; of the bug that was causing the Olden Health benchmark to output incorrect ; results! ; -; RUN: llvm-as < %s | opt -constprop | llvm-dis > s1 && \ -; RUN: llvm-as < %s | llvm-dis | llvm-as | opt -constprop | llvm-dis > s2 && \ -; RUN: diff s1 s2 +; RUN: llvm-as < %s | opt -constprop | llvm-dis > %t.1 && \ +; RUN: llvm-as < %s | llvm-dis | llvm-as | opt -constprop | llvm-dis > %t.2 && \ +; RUN: diff %t.1 %t.2 implementation |