1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

Meta: Run Crypto tests in CI

We skip the tests that are not self-contained (TLS) to avoid adding
extra variables to the tests.
This commit is contained in:
AnotherTest 2020-06-06 01:51:39 +04:30 committed by Andreas Kling
parent a3ff4ff8a1
commit 40829b849a
2 changed files with 11 additions and 1 deletions

View file

@ -77,6 +77,11 @@ if (BUILD_LAGOM)
set_target_properties(test-crypto_lagom PROPERTIES OUTPUT_NAME test-crypto)
target_link_libraries(test-crypto_lagom Lagom)
target_link_libraries(test-crypto_lagom stdc++)
add_test(
NAME Crypto
COMMAND test-crypto_lagom test -tc
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
add_executable(disasm_lagom ../../Userland/disasm.cpp)
set_target_properties(disasm_lagom PROPERTIES OUTPUT_NAME disasm)