diff options
author | Po-Hsu Lin <po-hsu.lin@canonical.com> | 2020-10-23 10:45:39 +0800 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-11-19 14:50:14 +1100 |
commit | f5eca0b279117f25020112a2f65ec9c3ea25f3ac (patch) | |
tree | bc1469ff7cef7ea9af22ebf3802e3e89211d9625 | |
parent | cb5d4c465f31bc44b8bbd4934678c2b140a2ad29 (diff) | |
download | lwn-f5eca0b279117f25020112a2f65ec9c3ea25f3ac.tar.gz lwn-f5eca0b279117f25020112a2f65ec9c3ea25f3ac.zip |
selftests/powerpc/eeh: disable kselftest timeout setting for eeh-basic
The eeh-basic test got its own 60 seconds timeout (defined in commit
414f50434aa2 "selftests/eeh: Bump EEH wait time to 60s") per breakable
device.
And we have discovered that the number of breakable devices varies
on different hardware. The device recovery time ranges from 0 to 35
seconds. In our test pool it will take about 30 seconds to run on a
Power8 system that with 5 breakable devices, 60 seconds to run on a
Power9 system that with 4 breakable devices.
Extend the timeout setting in the kselftest framework to 5 minutes
to give it a chance to finish.
Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20201023024539.9512-1-po-hsu.lin@canonical.com
-rw-r--r-- | tools/testing/selftests/powerpc/eeh/Makefile | 2 | ||||
-rw-r--r-- | tools/testing/selftests/powerpc/eeh/settings | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/powerpc/eeh/Makefile b/tools/testing/selftests/powerpc/eeh/Makefile index b397babd569b..ae963eb2dc5b 100644 --- a/tools/testing/selftests/powerpc/eeh/Makefile +++ b/tools/testing/selftests/powerpc/eeh/Makefile @@ -3,7 +3,7 @@ noarg: $(MAKE) -C ../ TEST_PROGS := eeh-basic.sh -TEST_FILES := eeh-functions.sh +TEST_FILES := eeh-functions.sh settings top_srcdir = ../../../../.. include ../../lib.mk diff --git a/tools/testing/selftests/powerpc/eeh/settings b/tools/testing/selftests/powerpc/eeh/settings new file mode 100644 index 000000000000..694d70710ff0 --- /dev/null +++ b/tools/testing/selftests/powerpc/eeh/settings @@ -0,0 +1 @@ +timeout=300 |