[wasm-ld] Fix wasm trace test to use %t for temporary files.

llvm-svn: 353272
This commit is contained in:
David L. Jones 2019-02-06 04:49:46 +00:00
parent edff5f4b21
commit 4c3ba38429
1 changed files with 2 additions and 2 deletions

View File

@ -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