[PATCH] D16003: [test-suite] Fix for running tests after cmake transition

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


mcrosier created this revision.
mcrosier added a reviewer: MatzeB.
mcrosier added a subscriber: llvm-commits.

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

 Thanks.

http://reviews.llvm.org/D16003

Files:
  CMakeLists.txt

Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt
+++ CMakeLists.txt
@@ -52,6 +52,7 @@
 
 include(MakefileFunctions)
 include(SingleMultiSource)
+include(CheckFunctionExists)
 find_package(YACC)
 find_package(TCL)
 
@@ -72,6 +73,7 @@
     set(ENDIAN "little")
   endif()
 endif()
+check_function_exists(re_comp HAVE_RE_COMP)
 
 add_subdirectory(tools)
 # Shortcut for the path to the fpcmp executable


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16003.44349.patch
Type: text/x-patch
Size: 460 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160108/1b150c93/attachment.bin>


More information about the llvm-commits mailing list