diff options
author | Duncan Sands <baldrick@free.fr> | 2007-07-23 15:23:35 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2007-07-23 15:23:35 +0000 |
commit | b063fa59d3d04fd62699b363de9f74f78a1ec0d7 (patch) | |
tree | a69254ea869b73c23fc955d9345d67ab5a36ecdd /llvm/test/Feature/inlineasm.ll | |
parent | 1747440364ba8a05b17d179a8626eb50c830d49a (diff) | |
download | bcm5719-llvm-b063fa59d3d04fd62699b363de9f74f78a1ec0d7.tar.gz bcm5719-llvm-b063fa59d3d04fd62699b363de9f74f78a1ec0d7.zip |
The Ada f-e produces various auxiliary output files
that cannot be suppressed and cannot be redirected:
they are dumped in the current working directory.
When running the testsuite this means that these
files do not end up in the Output directory. The
best solution I could find is to change directory
into Output before running tests.
llvm-svn: 40437
Diffstat (limited to 'llvm/test/Feature/inlineasm.ll')
-rw-r--r-- | llvm/test/Feature/inlineasm.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Feature/inlineasm.ll b/llvm/test/Feature/inlineasm.ll index c8f59f24cf4..fdb4657c672 100644 --- a/llvm/test/Feature/inlineasm.ll +++ b/llvm/test/Feature/inlineasm.ll @@ -1,7 +1,7 @@ ; 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 +; 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 module asm "this is an inline asm block" |