From 8124719c3d2744edfc475155f70a286cb45e72ef Mon Sep 17 00:00:00 2001 From: Marco Biscaro Date: Sat, 17 Apr 2021 23:20:56 -0300 Subject: Tests: Reorganize LibCompress unit tests Move LibCompress unit tests to LibCompress/Tests directory and register them with CMake's add_test. This allows us to run these tests with ninja test instead of running a separate executable. Also split the existing tests in 3 test files that better follow the source code structure (inspired by AK tests). --- Userland/Utilities/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) (limited to 'Userland/Utilities/CMakeLists.txt') diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index 999a98151b..1b0c424049 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -43,7 +43,6 @@ target_link_libraries(su LibCrypt) target_link_libraries(tar LibArchive LibCompress) target_link_libraries(telws LibCrypto LibTLS LibWebSocket LibLine) target_link_libraries(test-crypto LibCrypto LibTLS LibLine) -target_link_libraries(test-compress LibCompress) target_link_libraries(test-fuzz LibCore LibGemini LibGfx LibHTTP LibIPC LibJS LibMarkdown LibShell) target_link_libraries(test-js LibJS LibLine LibCore) target_link_libraries(test-pthread LibThread) -- cgit v1.2.3