[Lldb-commits] [lldb] r214522 - Fix test execution: the cmake keyword is CACHE, not CACHED

Ed Maste emaste at freebsd.org
Fri Aug 1 09:57:46 PDT 2014


Author: emaste
Date: Fri Aug  1 11:57:46 2014
New Revision: 214522

URL: http://llvm.org/viewvc/llvm-project?rev=214522&view=rev
Log:
Fix test execution: the cmake keyword is CACHE, not CACHED

Modified:
    lldb/trunk/test/CMakeLists.txt

Modified: lldb/trunk/test/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/CMakeLists.txt?rev=214522&r1=214521&r2=214522&view=diff
==============================================================================
--- lldb/trunk/test/CMakeLists.txt (original)
+++ lldb/trunk/test/CMakeLists.txt Fri Aug  1 11:57:46 2014
@@ -25,7 +25,7 @@ endif ()
 # Allow the user to override the default by setting LLDB_TEST_ARCH
 set(LLDB_TEST_ARCH
 	${LLDB_DEFAULT_TEST_ARCH}
-	CACHED STRING "Specify the architecture to run LLDB tests as (x86|x64).  Determines whether tests are compiled with -m32 or -m64")
+	CACHE STRING "Specify the architecture to run LLDB tests as (x86|x64).  Determines whether tests are compiled with -m32 or -m64")
 
 # Users can override LLDB_TEST_USER_ARGS to specify arbitrary arguments to pass to the script
 set(LLDB_TEST_USER_ARGS





More information about the lldb-commits mailing list