From: Florian Krohm Date: Sat, 10 Sep 2011 18:28:57 +0000 (+0000) Subject: Sensitivity fix. On slow machines (s390x z900) need to sleep longer. X-Git-Tag: svn/VALGRIND_3_7_0~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=858ecdec54456712c9e0b4354f1b38c731137b88;p=thirdparty%2Fvalgrind.git Sensitivity fix. On slow machines (s390x z900) need to sleep longer. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12027 --- diff --git a/none/tests/tls.c b/none/tests/tls.c index a556db3d95..88722dcd9b 100644 --- a/none/tests/tls.c +++ b/none/tests/tls.c @@ -40,7 +40,7 @@ static int *test_so_extern(void) return &so_extern; } -static const struct timespec awhile = { 0, 100000000 }; +static const struct timespec awhile = { 0, 200000000 }; typedef int *(*func_t)(void); struct testcase {