diff options
author | David L. Jones <dlj@google.com> | 2019-02-06 04:49:46 +0000 |
---|---|---|
committer | David L. Jones <dlj@google.com> | 2019-02-06 04:49:46 +0000 |
commit | 4c3ba38429f42dead51b601f537471ee2ddf3442 (patch) | |
tree | 911575433cc2c14bdfdf45ed340f78e1fe4ef77c | |
parent | edff5f4b2180f28b94bf8e1f33cd60c54a58425e (diff) | |
download | bcm5719-llvm-4c3ba38429f42dead51b601f537471ee2ddf3442.tar.gz bcm5719-llvm-4c3ba38429f42dead51b601f537471ee2ddf3442.zip |
[wasm-ld] Fix wasm trace test to use %t for temporary files.
llvm-svn: 353272
-rw-r--r-- | lld/test/wasm/trace.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/test/wasm/trace.test b/lld/test/wasm/trace.test index bf74bd49806..023a2ccb2cc 100644 --- a/lld/test/wasm/trace.test +++ b/lld/test/wasm/trace.test @@ -1,8 +1,8 @@ RUN: llc -filetype=obj %p/Inputs/start.ll -o %t.foo.o # Check -t -RUN: wasm-ld %t.foo.o -o out.wasm -t 2>&1 | FileCheck %s +RUN: wasm-ld %t.foo.o -o %t.t.out.wasm -t 2>&1 | FileCheck %s CHECK: {{.*}}.foo.o # Check --trace alias -RUN: wasm-ld %t.foo.o -o out.wasm --trace 2>&1 | FileCheck %s +RUN: wasm-ld %t.foo.o -o %t.trace.out.wasm --trace 2>&1 | FileCheck %s |