selftests/powerpc: Give some tests longer to run

Some of these long running tests can time out on heavily loaded
systems, give them longer to run.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Michael Ellerman
2018-07-26 22:24:59 +10:00
parent 1cdc6c14b0
commit d97e7f198b
5 changed files with 6 additions and 0 deletions

View File

@@ -38,5 +38,6 @@ int test_futex(void)
int main(void)
{
test_harness_set_timeout(300);
return test_harness(test_futex, "futex_bench");
}

View File

@@ -84,5 +84,7 @@ int main(int argc, char *argv[])
exit(1);
}
}
test_harness_set_timeout(300);
return test_harness(test_mmap, "mmap_bench");
}