diff options
| -rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll | 4 | ||||
| -rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/execname-options.ll | 4 | ||||
| -rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/lit.local.cfg | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll b/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll index baf4b0f87a6..c713ee14045 100644 --- a/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll +++ b/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll @@ -1,3 +1,7 @@ +; If the binary looks up libraries using an rpath, we can't test this +; without copying the whole lib dir or polluting the build dir. +; UNSUPPORTED: rpath_in_use + ; REQUIRES: aarch64-registered-target ; RUN: echo > %t.input diff --git a/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll b/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll index 61fbab3897e..2b536c649a0 100644 --- a/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll +++ b/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll @@ -1,3 +1,7 @@ +; If the binary looks up libraries using an rpath, we can't test this +; without copying the whole lib dir or polluting the build dir. +; UNSUPPORTED: rpath_in_use + ; RUN: echo > %t.input ; RUN: cp llvm-isel-fuzzer %t.bin=gisel diff --git a/llvm/test/tools/llvm-isel-fuzzer/lit.local.cfg b/llvm/test/tools/llvm-isel-fuzzer/lit.local.cfg new file mode 100644 index 00000000000..56bb62f4f5f --- /dev/null +++ b/llvm/test/tools/llvm-isel-fuzzer/lit.local.cfg @@ -0,0 +1,2 @@ +if config.enable_shared == 1: + config.available_features.add('rpath_in_use') |

