cmark

My personal build of CMark ✏️

Commit
c301f6b6c6c3c870bc7a56334c3fd1d42356b736
Parent
23cc43d2e77afd949a0951f97539fd63d50c3cee
Author
John MacFarlane <jgm@berkeley.edu>
Date

Moved testing programs to test/.

Added test/CMakeLists.txt.

Diffstat

4 files changed, 26 insertions, 21 deletions

Status File Name N° Changes Insertions Deletions
Modified CMakeLists.txt 22 1 21
Added test/CMakeLists.txt 25 25 0
Renamed pathological_tests.py -> test/pathological_tests.py 0 0 0
Renamed spec_tests.py -> test/spec_tests.py 0 0 0
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -15,28 +15,8 @@ set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_
 add_subdirectory(src)
 add_subdirectory(api_test)
 add_subdirectory(man)
-
 enable_testing()
-
-# To get verbose output: cmake --build build --target "test" -- ARGS='-V'
-add_test(spectest_library
-   python "${CMAKE_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec"
-   "${CMAKE_SOURCE_DIR}/spec.txt" "--library-dir" "${CMAKE_BINARY_DIR}/src"
-)
-add_test(pathological_tests_library
-   python "${CMAKE_SOURCE_DIR}/pathological_tests.py"
-   "--library-dir" "${CMAKE_BINARY_DIR}/src"
-)
-add_test(NAME api_test COMMAND api_test)
-if (WIN32)
-  file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR}/src WIN_DLL_DIR)
-  set_tests_properties(api_test PROPERTIES
-    ENVIRONMENT "PATH=${WIN_DLL_DIR};$ENV{PATH}"
-  )
-endif(WIN32)
-add_test(spectest_executable
-   python "${CMAKE_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec" "${CMAKE_SOURCE_DIR}/spec.txt" "--program" "${CMAKE_BINARY_DIR}/src/cmark"
-)
+add_subdirectory(test)
 
 if(NOT CMAKE_BUILD_TYPE)
   set(CMAKE_BUILD_TYPE "Release" CACHE STRING
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
@@ -0,0 +1,24 @@
+# To get verbose output: cmake --build build --target "test" -- ARGS='-V'
+
+if (WIN32)
+  file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR}/src WIN_DLL_DIR)
+  set_tests_properties(api_test PROPERTIES
+    ENVIRONMENT "PATH=${WIN_DLL_DIR};$ENV{PATH}"
+  )
+endif(WIN32)
+
+add_test(spectest_library
+   python "${CMAKE_CURRENT_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec"
+   "${CMAKE_SOURCE_DIR}/spec.txt" "--library-dir" "${CMAKE_BINARY_DIR}/src"
+)
+
+add_test(pathological_tests_library
+   python "${CMAKE_CURRENT_SOURCE_DIR}/pathological_tests.py"
+   "--library-dir" "${CMAKE_BINARY_DIR}/src"
+)
+
+add_test(NAME api_test COMMAND api_test)
+
+add_test(spectest_executable
+   python "${CMAKE_CURRENT_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec" "${CMAKE_SOURCE_DIR}/spec.txt" "--program" "${CMAKE_BINARY_DIR}/src/cmark"
+)+
\ No newline at end of file
diff --git a/pathological_tests.py b/test/pathological_tests.py
diff --git a/spec_tests.py b/test/spec_tests.py