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
Notes: sideshowbarker 2024-07-19 05:46:26 +09:00
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)

View file

@ -51,6 +51,7 @@ static bool binary = false;
static bool interactive = false;
static bool run_tests = false;
static int port = 443;
static bool in_ci = false;
static struct timeval start_time {
0, 0
@ -283,6 +284,7 @@ auto main(int argc, char** argv) -> int
parser.add_option(suite, "Set the suite used", "suite-name", 'n', "suite name");
parser.add_option(server, "Set the server to talk to (only for `tls')", "server-address", 's', "server-address");
parser.add_option(port, "Set the port to talk to (only for `tls')", "port", 'p', "port");
parser.add_option(in_ci, "CI Test mode", "ci-mode", 'c');
parser.parse(argc, argv);
StringView mode_sv { mode };
@ -381,7 +383,10 @@ auto main(int argc, char** argv) -> int
rsa_tests();
if (!in_ci) {
// Do not run these in CI to avoid tests with variables outside our control.
tls_tests();
}
bigint_tests();