Skip to content

Commit 84621a6

Browse files
authored
build: add the ability to run the test suite from CMake (jpsim#256)
Expand the CMake based build to support running the test suite. This allows testing on Windows as well. Although the test suite does not fully pass on Windows yet, this brings us closer. With this on Windows, the following is the result: ``` Test Suite 'All tests' failed at 2020-05-14 12:11:08.871 Executed 120 tests, with 9 failures (0 unexpected) in 0.505 (0.505) seconds ``` The failures in the test suite correspond to the conversion of floating point values in the infinity and NaN cases (either converting to `-infe+0`, `infe+0`, or `nane+0` instead of `-inf`, `inf`, `nan`, or converting to `NaN` instead of `nan`).
1 parent 170ac41 commit 84621a6

File tree

4 files changed

+44
-0
lines changed

4 files changed

+44
-0
lines changed

CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ project(Yams
77
LANGUAGES C Swift)
88

99
option(BUILD_SHARED_LIBS "build shared libraries" ON)
10+
if(CMAKE_SYSTEM_NAME STREQUAL Darwin)
11+
option(BUILD_TESTING "build tests by default" NO)
12+
else()
13+
option(BUILD_TESTING "build tests by default" YES)
14+
endif()
1015

1116
find_package(dispatch CONFIG QUIET)
1217
find_package(Foundation CONFIG QUIET)
@@ -22,6 +27,10 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
2227
set(CMAKE_Swift_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/swift)
2328

2429
include(SwiftSupport)
30+
include(CTest)
2531

2632
add_subdirectory(Sources)
33+
if(BUILD_TESTING)
34+
add_subdirectory(Tests)
35+
endif()
2736
add_subdirectory(cmake/modules)

Sources/Yams/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ add_library(Yams
1717
YamlError.swift)
1818
target_compile_definitions(Yams PRIVATE
1919
SWIFT_PACKAGE)
20+
target_compile_options(Yams PRIVATE
21+
$<$<BOOL:${BUILD_TESTING}>:-enable-testing>)
2022

2123
target_link_libraries(Yams PRIVATE
2224
CYaml

Tests/CMakeLists.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
find_package(XCTest CONFIG QUIET)
2+
3+
add_subdirectory(YamsTests)
4+
5+
add_executable(YamsTestRunner
6+
LinuxMain.swift)
7+
target_link_libraries(YamsTestRunner PRIVATE
8+
YamsTests
9+
XCTest)
10+
11+
add_test(NAME YamsTests
12+
COMMAND YamsTestRunner)

Tests/YamsTests/CMakeLists.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
add_library(YamsTests
2+
ConstructorTests.swift
3+
EmitterTests.swift
4+
EncoderTests.swift
5+
MarkTests.swift
6+
NodeTests.swift
7+
PerformanceTests.swift
8+
RepresenterTests.swift
9+
ResolverTests.swift
10+
SpecTests.swift
11+
StringTests.swift
12+
TestHelper.swift
13+
YamlErrorTests.swift)
14+
set_target_properties(YamsTests PROPERTIES
15+
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
16+
target_link_libraries(YamsTests PUBLIC
17+
Foundation
18+
XCTest
19+
Yams)
20+
target_compile_options(YamsTests PRIVATE
21+
-enable-testing)

0 commit comments

Comments
 (0)