[cmake-commits] king committed CMakeLists.txt 1.357 1.358

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Apr 17 16:34:09 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv10112

Modified Files:
	CMakeLists.txt 
Log Message:
ENH: Re-enabling Plugin test now that it should work on MacOSX.  I will let it run one night to see what platforms are still not implemented.  Currently it is not run on QNX because it is known to not be implemented there.


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CMakeLists.txt,v
retrieving revision 1.357
retrieving revision 1.358
diff -u -d -r1.357 -r1.358
--- CMakeLists.txt	17 Apr 2007 19:06:04 -0000	1.357
+++ CMakeLists.txt	17 Apr 2007 20:34:07 -0000	1.358
@@ -986,8 +986,8 @@
     --test-command executable
     )
 
-  # Disable this test by default until it works everywhere.
-  IF(CMAKE_TEST_ENABLE_Plugin)
+  # Disable this test on QNX until support is implemented.
+  IF(NOT QNXNTO)
   ADD_TEST(Plugin ${CMAKE_CTEST_COMMAND}
     --build-and-test
     "${CMake_SOURCE_DIR}/Tests/Plugin"
@@ -997,7 +997,7 @@
     --build-makeprogram ${CMAKE_TEST_MAKEPROGRAM}
     --build-two-config
     --test-command bin/example)
-  ENDIF(CMAKE_TEST_ENABLE_Plugin)
+  ENDIF(NOT QNXNTO)
 
   IF(NOT CMAKE_TEST_DIFFERENT_GENERATOR)
     ADD_TEST(kwsys ${CMAKE_CTEST_COMMAND}



More information about the Cmake-commits mailing list