[test-suite] r257206 - [test-suite] Fix for archie-client and plot2fig in MS/Benchmarks/Prolangs-C.

Chad Rosier via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 8 13:03:03 PST 2016


Author: mcrosier
Date: Fri Jan  8 15:03:02 2016
New Revision: 257206

URL: http://llvm.org/viewvc/llvm-project?rev=257206&view=rev
Log:
[test-suite] Fix for archie-client and plot2fig in MS/Benchmarks/Prolangs-C.

This flag controls whether some tests are included when configuring.
It was missed when transitioning from configure to CMake, this adds it
back.

Affects archie-client and plot2fig in MultiSource/Benchmarks/Prolangs-C.
http://reviews.llvm.org/D16003

Modified:
    test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/archie-client/CMakeLists.txt
    test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/plot2fig/CMakeLists.txt

Modified: test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/archie-client/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/archie-client/CMakeLists.txt?rev=257206&r1=257205&r2=257206&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/archie-client/CMakeLists.txt (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/archie-client/CMakeLists.txt Fri Jan  8 15:03:02 2016
@@ -4,6 +4,8 @@ set(DIRS)
 set(PARALLEL_DIRS)
 
 set(LEVEL ../../../..)
+include(CheckFunctionExists)
+check_function_exists(re_comp HAVE_RE_COMP)
 if(DEFINED HAVE_RE_COMP)
   set(PROG archie)
 endif()

Modified: test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/plot2fig/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/plot2fig/CMakeLists.txt?rev=257206&r1=257205&r2=257206&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/plot2fig/CMakeLists.txt (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/plot2fig/CMakeLists.txt Fri Jan  8 15:03:02 2016
@@ -4,6 +4,8 @@ set(DIRS)
 set(PARALLEL_DIRS)
 
 set(LEVEL ../../../..)
+include(CheckFunctionExists)
+check_function_exists(re_comp HAVE_RE_COMP)
 if(DEFINED HAVE_RE_COMP)
   set(PROG plot2fig)
 endif()




More information about the llvm-commits mailing list