mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-11 16:00:57 +00:00
tests: Skip speed tests when running on Valgrind
This commit is contained in:
parent
d5b148ad5f
commit
50301f22ec
10
tests.c
10
tests.c
@ -3157,10 +3157,12 @@ Suite *test_suite(void)
|
||||
tcase_add_test(tc, test_rfc6979);
|
||||
suite_add_tcase(s, tc);
|
||||
|
||||
tc = tcase_create("speed");
|
||||
tcase_add_test(tc, test_sign_speed);
|
||||
tcase_add_test(tc, test_verify_speed);
|
||||
suite_add_tcase(s, tc);
|
||||
if (!RUNNING_ON_VALGRIND) {
|
||||
tc = tcase_create("speed");
|
||||
tcase_add_test(tc, test_sign_speed);
|
||||
tcase_add_test(tc, test_verify_speed);
|
||||
suite_add_tcase(s, tc);
|
||||
}
|
||||
|
||||
tc = tcase_create("address");
|
||||
tcase_add_test(tc, test_address);
|
||||
|
Loading…
Reference in New Issue
Block a user