Feature #2204
Updated by Tobias Brunner over 8 years ago
Hi,
in the past we had several cases where the bliss tests timeout and failed due to that.
Especially when build was running in heavily virtualized and utilized environments.
We found it sufficient to increase the timeout to fix the issue for quite a while now, therefore I wanted to ask if you'd want to pick that change up.
<pre><code class="diff">
--- a/src/libstrongswan/plugins/bliss/tests/suites/test_bliss_sampler.c
+++ b/src/libstrongswan/plugins/bliss/tests/suites/test_bliss_sampler.c
@@ -89,7 +89,7 @@
s = suite_create("bliss_sampler");
tc = tcase_create("sampler_gaussian");
- tcase_set_timeout(tc, 10);
+ tcase_set_timeout(tc, 30);
tcase_add_loop_test(tc, test_bliss_sampler_gaussian, 0, countof(key_size));
suite_add_tcase(s, tc);
</code></pre>
in the past we had several cases where the bliss tests timeout and failed due to that.
Especially when build was running in heavily virtualized and utilized environments.
We found it sufficient to increase the timeout to fix the issue for quite a while now, therefore I wanted to ask if you'd want to pick that change up.
<pre><code class="diff">
--- a/src/libstrongswan/plugins/bliss/tests/suites/test_bliss_sampler.c
+++ b/src/libstrongswan/plugins/bliss/tests/suites/test_bliss_sampler.c
@@ -89,7 +89,7 @@
s = suite_create("bliss_sampler");
tc = tcase_create("sampler_gaussian");
- tcase_set_timeout(tc, 10);
+ tcase_set_timeout(tc, 30);
tcase_add_loop_test(tc, test_bliss_sampler_gaussian, 0, countof(key_size));
suite_add_tcase(s, tc);
</code></pre>