1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:07:46 +00:00

LibCrypto+LibTLS: Split and move test suite into Tests directory

This change splits test-crypto.cpp from Userland into separate test
suites located in Tests/ directory.
This commit is contained in:
Peter Bocan 2021-06-18 22:28:49 +01:00 committed by Ali Mohammad Pur
parent 3a4017b419
commit 4d5ffd364a
12 changed files with 1734 additions and 1 deletions

View file

@ -0,0 +1,4 @@
file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
foreach(source ${TEST_SOURCES})
serenity_test(${source} LibTLS LIBS LibTLS LibCrypto)
endforeach()