diff options
| author | David L. Jones <dlj@google.com> | 2018-07-31 21:15:58 +0000 |
|---|---|---|
| committer | David L. Jones <dlj@google.com> | 2018-07-31 21:15:58 +0000 |
| commit | 2a895e57aff3e7f5387ca5be76189cfb32489483 (patch) | |
| tree | 65cf51e9e122afe5e29e27b5a623141b58852092 | |
| parent | 1f8cb3a65ee7c8ace65801bbbe34cc9abd10f0ec (diff) | |
| download | bcm5719-llvm-2a895e57aff3e7f5387ca5be76189cfb32489483.tar.gz bcm5719-llvm-2a895e57aff3e7f5387ca5be76189cfb32489483.zip | |
[lld] Fix test RUN commands so they don't fail when run in a read-only filesystem.
Some test setups run tests in a read-only path, which means that opening the
default output path (a.out) for write will fail. This change adds appropriate -o
flags so the tests will not fail spuriously.
llvm-svn: 338440
| -rw-r--r-- | lld/test/ELF/arm-tag-vfp-args-errs.s | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lld/test/ELF/arm-tag-vfp-args-errs.s b/lld/test/ELF/arm-tag-vfp-args-errs.s index 03e84edc1e9..622cea07a04 100644 --- a/lld/test/ELF/arm-tag-vfp-args-errs.s +++ b/lld/test/ELF/arm-tag-vfp-args-errs.s @@ -3,12 +3,12 @@ // RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi %S/Inputs/arm-vfp-arg-vfp.s -o %tvfp.o // RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi %S/Inputs/arm-vfp-arg-toolchain.s -o %ttoolchain.o // RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi %s -o %t.o -// RUN: not ld.lld %t.o %tbase.o %tvfp.o 2>&1 | FileCheck %s -// RUN: not ld.lld %t.o %tbase.o %ttoolchain.o 2>&1 | FileCheck %s -// RUN: not ld.lld %t.o %tvfp.o %tbase.o 2>&1 | FileCheck %s -// RUN: not ld.lld %t.o %tvfp.o %ttoolchain.o 2>&1 | FileCheck %s -// RUN: not ld.lld %t.o %ttoolchain.o %tbase.o 2>&1 | FileCheck %s -// RUN: not ld.lld %t.o %ttoolchain.o %tvfp.o 2>&1 | FileCheck %s +// RUN: not ld.lld %t.o %tbase.o %tvfp.o -o%t 2>&1 | FileCheck %s +// RUN: not ld.lld %t.o %tbase.o %ttoolchain.o -o%t 2>&1 | FileCheck %s +// RUN: not ld.lld %t.o %tvfp.o %tbase.o -o%t 2>&1 | FileCheck %s +// RUN: not ld.lld %t.o %tvfp.o %ttoolchain.o -o%t 2>&1 | FileCheck %s +// RUN: not ld.lld %t.o %ttoolchain.o %tbase.o -o%t 2>&1 | FileCheck %s +// RUN: not ld.lld %t.o %ttoolchain.o %tvfp.o -o%t 2>&1 | FileCheck %s // CHECK: incompatible Tag_ABI_VFP_args .arch armv7-a |

