diff options
author | Justin Bogner <mail@justinbogner.com> | 2017-10-13 00:17:54 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2017-10-13 00:17:54 +0000 |
commit | 9c03fd5f647eb235ee2c531e033110084bb7dbd8 (patch) | |
tree | b95f6c917f928acc9cfe9e0f1172aa4a9ca23f40 /llvm/test/tools/llvm-isel-fuzzer | |
parent | af6c9edc4beb7272c34953591c21e1478b6561f2 (diff) | |
download | bcm5719-llvm-9c03fd5f647eb235ee2c531e033110084bb7dbd8.tar.gz bcm5719-llvm-9c03fd5f647eb235ee2c531e033110084bb7dbd8.zip |
llvm-isel-fuzzer: Use the right REQUIRES line for r315599
I'd mixed up ENABLE_SHARED and BUILD_SHARED_LIBS before, so these
tests were being disabled in too many places.
llvm-svn: 315646
Diffstat (limited to 'llvm/test/tools/llvm-isel-fuzzer')
-rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll | 3 | ||||
-rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/execname-options.ll | 2 | ||||
-rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/lit.local.cfg | 2 |
3 files changed, 2 insertions, 5 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 c713ee14045..961fd22d770 100644 --- a/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll +++ b/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll @@ -1,7 +1,6 @@ ; 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: static-libs ; 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 2b536c649a0..68ca142f1c1 100644 --- a/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll +++ b/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll @@ -1,6 +1,6 @@ ; 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: static-libs ; RUN: echo > %t.input diff --git a/llvm/test/tools/llvm-isel-fuzzer/lit.local.cfg b/llvm/test/tools/llvm-isel-fuzzer/lit.local.cfg deleted file mode 100644 index 56bb62f4f5f..00000000000 --- a/llvm/test/tools/llvm-isel-fuzzer/lit.local.cfg +++ /dev/null @@ -1,2 +0,0 @@ -if config.enable_shared == 1: - config.available_features.add('rpath_in_use') |