mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
c32bc92f9c
Add end-to-end tests checking that every GraphQL endpoint is properly working and returning the expected result
18 lines
556 B
CMake
18 lines
556 B
CMake
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
enable_testing()
|
|
|
|
# Give control to the various subdirectories
|
|
include(${CMAKE_SOURCE_DIR}/tests/unit/UnitTests.cmake)
|
|
include(${CMAKE_SOURCE_DIR}/tests/analysis/AnalysisTests.cmake)
|
|
include(${CMAKE_SOURCE_DIR}/tests/runtime/RuntimeTests.cmake)
|
|
|
|
add_subdirectory(tests/tools)
|
|
add_subdirectory(tests/abi)
|
|
add_subdirectory(tests/tuple-tree-generator/python-wrappers/multiple-versions)
|
|
add_subdirectory(tests/daemon)
|
|
|
|
set(TEST_CFLAGS_${ARCH} "${TEST_CFLAGS_${ARCH}} -mthumb")
|