[llvm] r315646 - llvm-isel-fuzzer: Use the right REQUIRES line for r315599

Justin Bogner via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 12 17:17:54 PDT 2017


Author: bogner
Date: Thu Oct 12 17:17:54 2017
New Revision: 315646

URL: http://llvm.org/viewvc/llvm-project?rev=315646&view=rev
Log:
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.

Removed:
    llvm/trunk/test/tools/llvm-isel-fuzzer/lit.local.cfg
Modified:
    llvm/trunk/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll
    llvm/trunk/test/tools/llvm-isel-fuzzer/execname-options.ll

Modified: llvm/trunk/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll?rev=315646&r1=315645&r2=315646&view=diff
==============================================================================
--- llvm/trunk/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll (original)
+++ llvm/trunk/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll Thu Oct 12 17:17:54 2017
@@ -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

Modified: llvm/trunk/test/tools/llvm-isel-fuzzer/execname-options.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/llvm-isel-fuzzer/execname-options.ll?rev=315646&r1=315645&r2=315646&view=diff
==============================================================================
--- llvm/trunk/test/tools/llvm-isel-fuzzer/execname-options.ll (original)
+++ llvm/trunk/test/tools/llvm-isel-fuzzer/execname-options.ll Thu Oct 12 17:17:54 2017
@@ -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
 

Removed: llvm/trunk/test/tools/llvm-isel-fuzzer/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/llvm-isel-fuzzer/lit.local.cfg?rev=315645&view=auto
==============================================================================
--- llvm/trunk/test/tools/llvm-isel-fuzzer/lit.local.cfg (original)
+++ llvm/trunk/test/tools/llvm-isel-fuzzer/lit.local.cfg (removed)
@@ -1,2 +0,0 @@
-if config.enable_shared == 1:
-   config.available_features.add('rpath_in_use')




More information about the llvm-commits mailing list