]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
unit-tests: Increase timeout for test vectors suite
authorTobias Brunner <tobias@strongswan.org>
Thu, 13 Feb 2020 15:42:13 +0000 (16:42 +0100)
committerTobias Brunner <tobias@strongswan.org>
Thu, 13 Feb 2020 15:42:13 +0000 (16:42 +0100)
These occasionally fail due to the current timeout on IBM Power on Travis.

src/libstrongswan/tests/suites/test_vectors.c

index b5733fef880d6ac447c7cbe5543b479078fe941a..0cc862fe67d14bc3685d95fddeec5ade50948334 100644 (file)
@@ -62,7 +62,7 @@ Suite *vectors_suite_create()
 
        tc = tcase_create("transforms");
        tcase_add_loop_test(tc, test_vectors, 0, countof(tfs));
-       tcase_set_timeout(tc, 20);
+       tcase_set_timeout(tc, 30);
        suite_add_tcase(s, tc);
 
        return s;