]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
unit-tests: Use a larger timeout for test vector testing
authorMartin Willi <martin@revosec.ch>
Mon, 13 Apr 2015 10:27:35 +0000 (12:27 +0200)
committerMartin Willi <martin@revosec.ch>
Wed, 15 Apr 2015 12:38:42 +0000 (14:38 +0200)
As we test DH calculations this now takes more time. If multiple DH backends
are enabled, we likely hit the default test timeout.

src/libstrongswan/tests/suites/test_vectors.c

index a1205d0be9dc080cb1040eab19f073802287b37f..65924800b060cc5a542b4c4d774abd3930d4d823 100644 (file)
@@ -41,6 +41,7 @@ Suite *vectors_suite_create()
 
        tc = tcase_create("failures");
        tcase_add_test(tc, test_vectors);
+       tcase_set_timeout(tc, 8);
        suite_add_tcase(s, tc);
 
        return s;