diff options
author | Ratchanan Srirattanamet <ratchanan@ubports.com> | 2023-12-14 04:04:32 +0700 |
---|---|---|
committer | Ratchanan Srirattanamet <ratchanan@ubports.com> | 2023-12-14 04:04:32 +0700 |
commit | 32f4db850f34668bf3c66e86f009bcb3a8c8374e (patch) | |
tree | 3d584c91307226b08c900699c14c317156e16e0b /tests/unit/CMakeLists.txt | |
parent | 3c0c8488f05430c7d2fc54009d928ffef36d1c61 (diff) | |
download | ayatana-indicator-display-32f4db850f34668bf3c66e86f009bcb3a8c8374e.tar.gz ayatana-indicator-display-32f4db850f34668bf3c66e86f009bcb3a8c8374e.tar.bz2 ayatana-indicator-display-32f4db850f34668bf3c66e86f009bcb3a8c8374e.zip |
Remove USB manager and corresponding tests
Since this is renamed, it has never worked correctly anyway. I've forked
this part of code as "adbd-approver" [1], so this part can now be
removed.
[1] https://gitlab.com/ubports/development/core/adbd-approver
Diffstat (limited to 'tests/unit/CMakeLists.txt')
-rw-r--r-- | tests/unit/CMakeLists.txt | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/unit/CMakeLists.txt b/tests/unit/CMakeLists.txt index 63061c8..14f4d9e 100644 --- a/tests/unit/CMakeLists.txt +++ b/tests/unit/CMakeLists.txt @@ -60,21 +60,8 @@ function(add_test_by_name name) set_property(TEST ${TEST_NAME} APPEND PROPERTY ENVIRONMENT "TEST_NAME=${TEST_NAME}") target_link_libraries(${TEST_NAME} ${SERVICE_LINK_LIBRARIES} ${TEST_LINK_LIBRARIES} ${THREAD_LINK_LIBRARIES}) endfunction() -add_test_by_name(adbd-client-test) add_test_by_name(rotation-lock-test) -function(add_qt_test_by_name name) - set(TEST_NAME ${name}) - set(COVERAGE_TEST_TARGETS ${COVERAGE_TEST_TARGETS} ${TEST_NAME} PARENT_SCOPE) - add_executable (${TEST_NAME} ${TEST_NAME}.cpp) - target_link_options(${TEST_NAME} PRIVATE -no-pie) - add_test(${TEST_NAME} ${TEST_NAME}) - set_property(TEST ${TEST_NAME} APPEND PROPERTY ENVIRONMENT ${CTEST_ENVIRONMENT}) - target_link_libraries(${TEST_NAME} ${SERVICE_LINK_LIBRARIES} ${QT_LINK_LIBRARIES} ${TEST_LINK_LIBRARIES} ${THREAD_LINK_LIBRARIES}) -endfunction() -add_qt_test_by_name(greeter-test) -add_qt_test_by_name(usb-snap-test) - set(COVERAGE_TEST_TARGETS ${COVERAGE_TEST_TARGETS} PARENT_SCOPE |