cmake, test: Disable tests instead of ignoring them

This commit is contained in:
Hennadii Stepanov
2025-02-12 12:39:30 +00:00
parent bb9157db5d
commit 67dc7523f3

View File

@ -2,8 +2,9 @@
# Distributed under the MIT software license, see the accompanying # Distributed under the MIT software license, see the accompanying
# file COPYING or https://opensource.org/license/mit/. # file COPYING or https://opensource.org/license/mit/.
if(TARGET Python3::Interpreter) add_test(NAME util_rpcauth_test
add_test(NAME util_rpcauth_test COMMAND Python3::Interpreter ${PROJECT_BINARY_DIR}/test/util/rpcauth-test.py
COMMAND Python3::Interpreter ${PROJECT_BINARY_DIR}/test/util/rpcauth-test.py )
) set_tests_properties(util_rpcauth_test PROPERTIES
endif() DISABLED $<NOT:$<TARGET_EXISTS:Python3::Interpreter>>
)