diff options
| author | Simon Atanasyan <simon@atanasyan.com> | 2014-03-19 19:45:59 +0000 |
|---|---|---|
| committer | Simon Atanasyan <simon@atanasyan.com> | 2014-03-19 19:45:59 +0000 |
| commit | 4c5316d0b0ed31724c69d881be25b5242f2225ba (patch) | |
| tree | f90885c359bda7c4c932c39c1120694dfe8f9229 | |
| parent | 7675035235604e15b4805425e233ba677a175a97 (diff) | |
| download | bcm5719-llvm-4c5316d0b0ed31724c69d881be25b5242f2225ba.tar.gz bcm5719-llvm-4c5316d0b0ed31724c69d881be25b5242f2225ba.zip | |
[Mips] Make the test temporary file names self-explanatory.
llvm-svn: 204259
| -rw-r--r-- | lld/test/elf/Mips/r26-1.test | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lld/test/elf/Mips/r26-1.test b/lld/test/elf/Mips/r26-1.test index f8937812f18..9c11b046df4 100644 --- a/lld/test/elf/Mips/r26-1.test +++ b/lld/test/elf/Mips/r26-1.test @@ -2,16 +2,17 @@ # Build shared library # RUN: llvm-mc -triple=mipsel -filetype=obj -relocation-model=pic \ -# RUN: -o=%t1 %p/Inputs/ext.s -# RUN: lld -flavor gnu -target mipsel -shared -o %t2 %t1 +# RUN: -o=%t-pic-o %p/Inputs/ext.s +# RUN: lld -flavor gnu -target mipsel -shared -o %t-so %t-pic-o # Build executable -# RUN: llvm-mc -triple=mipsel -filetype=obj -o=%t3 %s -# RUN: llvm-readobj -relocations %t3 | FileCheck -check-prefix=OBJ-REL %s -# RUN: lld -flavor gnu -target mipsel -e glob -o %t4 %t3 %t2 -# RUN: llvm-objdump -section-headers -disassemble %t4 | \ +# RUN: llvm-mc -triple=mipsel -filetype=obj -o=%t-npic-o %s +# RUN: llvm-readobj -relocations %t-npic-o | \ +# RUN: FileCheck -check-prefix=OBJ-REL %s +# RUN: lld -flavor gnu -target mipsel -e glob -o %t-exe %t-npic-o %t-so +# RUN: llvm-objdump -section-headers -disassemble %t-exe | \ # RUN: FileCheck -check-prefix=EXE %s -# RUN: llvm-readobj -relocations %t4 | FileCheck -check-prefix=EXE-REL %s +# RUN: llvm-readobj -relocations %t-exe | FileCheck -check-prefix=EXE-REL %s # Object file has three R_MIPS_26 relocations # OBJ-REL: Relocations [ |

