diff options
author | Michael Neuling <mikey@neuling.org> | 2023-03-07 22:36:14 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2023-03-14 14:52:09 +0100 |
commit | 493648d6795f00b6dcd6295b2b4221871bc1b25b (patch) | |
tree | 8a3977c3c9dc514460b085789d3f95a348c6a946 /tools | |
parent | powerpc: Add myself to MAINTAINERS for Power VFIO support (diff) | |
download | linux-493648d6795f00b6dcd6295b2b4221871bc1b25b.tar.xz linux-493648d6795f00b6dcd6295b2b4221871bc1b25b.zip |
selftests/powerpc: Increase timeout for vsx_signal test
On the max config P10 machine (1920 threads and 64TB) this test fails
with a timeout:
Sending signals to all threads 10 times...!! killing vmx_signal
!! child died by signal 15
failure: vmx_signal
The default timeout is 120sec so increase this 3x to 360sec. With this
change the test passes on these large machines.
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20230307213614.2652059-1-mikey@neuling.org
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/powerpc/math/vmx_signal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/powerpc/math/vmx_signal.c b/tools/testing/selftests/powerpc/math/vmx_signal.c index b340a5c4e79d..c307dff19c12 100644 --- a/tools/testing/selftests/powerpc/math/vmx_signal.c +++ b/tools/testing/selftests/powerpc/math/vmx_signal.c @@ -151,5 +151,6 @@ int test_signal_vmx(void) int main(int argc, char *argv[]) { + test_harness_set_timeout(360); return test_harness(test_signal_vmx, "vmx_signal"); } |