diff options
author | Fangrui Song <maskray@google.com> | 2018-06-29 17:07:22 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-06-29 17:07:22 +0000 |
commit | c61b568e2d88c2591f594cc062f821644e5d447f (patch) | |
tree | 2ee181c65f628de2275bcb72040b05a147d9d393 | |
parent | a0857eaefe66d5ddb28744a4b9e706c484de1627 (diff) | |
download | bcm5719-llvm-c61b568e2d88c2591f594cc062f821644e5d447f.tar.gz bcm5719-llvm-c61b568e2d88c2591f594cc062f821644e5d447f.zip |
[ELF] Set -o because current directory may not be writable during a test
llvm-svn: 335992
-rw-r--r-- | lld/test/ELF/map-file-i686.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/test/ELF/map-file-i686.s b/lld/test/ELF/map-file-i686.s index f3718bd26e4..1b232e5929d 100644 --- a/lld/test/ELF/map-file-i686.s +++ b/lld/test/ELF/map-file-i686.s @@ -1,7 +1,7 @@ // REQUIRES: x86 // RUN: llvm-mc -filetype=obj -triple=i386-pc-linux %s -o %t1.o -// RUN: ld.lld %t1.o -M | FileCheck -strict-whitespace %s +// RUN: ld.lld %t1.o -o %t1 -M | FileCheck -strict-whitespace %s .global _start _start: |