Revision: 77724
http://sourceforge.net/p/brlcad/code/77724
Author: starseeker
Date: 2020-11-10 21:44:21 +0000 (Tue, 10 Nov 2020)
Log Message:
-----------
Had these tests backwards in the reworked version of the logic.
Modified Paths:
--------------
brlcad/trunk/CMakeLists.txt
Modified: brlcad/trunk/CMakeLists.txt
===================================================================
--- brlcad/trunk/CMakeLists.txt 2020-11-10 21:00:47 UTC (rev 77723)
+++ brlcad/trunk/CMakeLists.txt 2020-11-10 21:44:21 UTC (rev 77724)
@@ -474,19 +474,19 @@
if (NOT TARGET ${test_prog})
return()
endif ()
- if (NOT "${test_name}" MATCHES ^regress-)
+ if ("${test_name}" MATCHES ^regress-)
return()
endif ()
- if (NOT "${test_prog}" MATCHES ^regress-)
+ if ("${test_prog}" MATCHES ^regress-)
return()
endif ()
- if (NOT "${test_name}" MATCHES ^slow-)
+ if ("${test_name}" MATCHES ^slow-)
return()
endif ()
- if (NOT "${test_name}" STREQUAL "benchmark")
+ if ("${test_name}" STREQUAL "benchmark")
return()
endif ()
- if (NOT "${test_name}" MATCHES ^NOTE:)
+ if ("${test_name}" MATCHES ^NOTE:)
return()
endif ()
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits