blob: 88c5a89f5c711842e0d2a98a33eeba0a6e79ac9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
include(compatibility.cmake)
include(jxl_lists.cmake)
if(BUILD_TESTING OR JPEGXL_ENABLE_TOOLS)
# Library with test-only code shared between all tests / fuzzers.
add_library(jxl_testlib-static STATIC ${JPEGXL_INTERNAL_TESTLIB_FILES})
target_compile_options(jxl_testlib-static PRIVATE
${JPEGXL_INTERNAL_FLAGS}
${JPEGXL_COVERAGE_FLAGS}
)
target_compile_definitions(jxl_testlib-static PUBLIC
-DTEST_DATA_PATH="${JPEGXL_TEST_DATA_PATH}")
target_include_directories(jxl_testlib-static PUBLIC
"${PROJECT_SOURCE_DIR}"
)
target_link_libraries(jxl_testlib-static
hwy
jxl_extras_nocodec-static
jxl-static
)
endif()
if(NOT BUILD_TESTING)
return()
endif()
list(APPEND JPEGXL_INTERNAL_TESTS
# TODO(deymo): Move this to tools/
../tools/box/box_test.cc
../tools/djxl_fuzzer_test.cc
)
find_package(GTest)
# Individual test binaries:
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/tests)
foreach (TESTFILE IN LISTS JPEGXL_INTERNAL_TESTS)
# The TESTNAME is the name without the extension or directory.
get_filename_component(TESTNAME ${TESTFILE} NAME_WE)
if(TESTFILE STREQUAL ../tools/djxl_fuzzer_test.cc)
add_executable(${TESTNAME} ${TESTFILE} ../tools/djxl_fuzzer.cc)
else()
add_executable(${TESTNAME} ${TESTFILE})
endif()
if(JPEGXL_EMSCRIPTEN)
# The emscripten linking step takes too much memory and crashes during the
# wasm-opt step when using -O2 optimization level
set_target_properties(${TESTNAME} PROPERTIES LINK_FLAGS "\
-O1 \
-s USE_LIBPNG=1 \
-s ALLOW_MEMORY_GROWTH=1 \
-s SINGLE_FILE=1 \
-s PROXY_TO_PTHREAD \
-s EXIT_RUNTIME=1 \
-s USE_PTHREADS=1 \
-s NODERAWFS=1 \
")
else()
set_target_properties(${TESTNAME} PROPERTIES LINK_FLAGS "${JPEGXL_COVERAGE_LINK_FLAGS}")
endif()
target_compile_options(${TESTNAME} PRIVATE
${JPEGXL_INTERNAL_FLAGS}
# Add coverage flags to the test binary so code in the private headers of
# the library is also instrumented when running tests that execute it.
${JPEGXL_COVERAGE_FLAGS}
)
target_link_libraries(${TESTNAME}
box
gmock
GTest::GTest
GTest::Main
jxl_extras-static
jxl_testlib-static
)
# Output test targets in the test directory.
set_target_properties(${TESTNAME} PROPERTIES PREFIX "tests/")
if (WIN32 AND CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
set_target_properties(${TESTNAME} PROPERTIES COMPILE_FLAGS "-Wno-error")
endif ()
jxl_discover_tests(${TESTNAME})
endforeach ()
|