- Commit
- 96f548ec45ef83d40268ebe761c9ca83de410c99
- Parent
- 9c409825ec625e058a7caa19afcbbf5c0134f013
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Use --no-normalize in tests.
My personal build of CMark ✏️
Use --no-normalize in tests.
1 file changed, 3 insertions, 3 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | CMakeLists.txt | 6 | 3 | 3 |
diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -23,13 +23,13 @@ enable_testing() # To get verbose output: cmake --build build --target "test" -- ARGS='-V' add_test(spectest_library - python "${CMAKE_SOURCE_DIR}/runtests.py" "--spec" + python "${CMAKE_SOURCE_DIR}/runtests.py" "--no-normalize" "--spec" "${CMAKE_SOURCE_DIR}/spec.txt" "--library-dir" "${CMAKE_BINARY_DIR}/src" ) +add_test(NAME api_test COMMAND api_test) add_test(spectest_executable - python "${CMAKE_SOURCE_DIR}/runtests.py" "--spec" "${CMAKE_SOURCE_DIR}/spec.txt" "--program" "${CMAKE_BINARY_DIR}/src/cmark" + python "${CMAKE_SOURCE_DIR}/runtests.py" "--no-normalize" "--spec" "${CMAKE_SOURCE_DIR}/spec.txt" "--program" "${CMAKE_BINARY_DIR}/src/cmark" ) -add_test(NAME api_test COMMAND api_test) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release" CACHE STRING