diff options
author | Andrey Smirnov <andrew.smirnov@gmail.com> | 2017-07-11 19:40:08 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-22 22:54:37 +0200 |
commit | 8559c55ed315caf60f95291222f11529f396ced5 (patch) | |
tree | ac23099a659d63f17ba517221e4d3aa4d36a0272 /support/testing/tests/package/test_python.py | |
parent | ded5fa305985dff1585b1632697d2ee7297300b1 (diff) | |
download | buildroot-8559c55ed315caf60f95291222f11529f396ced5.tar.gz buildroot-8559c55ed315caf60f95291222f11529f396ced5.zip |
testing/tests/package/test_python: allow to change timeout
Depending on Python implementation used for testing, time it takes to
perform a given test can vary pretty significantly. To accout for that
allow individual test functions to specify different timeout value.
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support/testing/tests/package/test_python.py')
-rw-r--r-- | support/testing/tests/package/test_python.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/support/testing/tests/package/test_python.py b/support/testing/tests/package/test_python.py index a3ec31b330..bddf09ddbc 100644 --- a/support/testing/tests/package/test_python.py +++ b/support/testing/tests/package/test_python.py @@ -17,27 +17,27 @@ BR2_TARGET_ROOTFS_CPIO=y options=["-initrd", cpio_file]) self.emulator.login() - def version_test(self, version): + def version_test(self, version, timeout=-1): cmd = self.interpreter + " --version 2>&1 | grep '^{}'".format(version) - _, exit_code = self.emulator.run(cmd) + _, exit_code = self.emulator.run(cmd, timeout) self.assertEqual(exit_code, 0) - def math_floor_test(self): + def math_floor_test(self, timeout=-1): cmd = self.interpreter + " -c 'import math; math.floor(12.3)'" - _, exit_code = self.emulator.run(cmd) + _, exit_code = self.emulator.run(cmd, timeout) self.assertEqual(exit_code, 0) - def libc_time_test(self): + def libc_time_test(self, timeout=-1): cmd = self.interpreter + " -c 'from __future__ import print_function;" cmd += "import ctypes;" cmd += "libc = ctypes.cdll.LoadLibrary(\"libc.so.1\");" cmd += "print(libc.time(None))'" - _, exit_code = self.emulator.run(cmd) + _, exit_code = self.emulator.run(cmd, timeout) self.assertEqual(exit_code, 0) - def zlib_test(self): + def zlib_test(self, timeout=-1): cmd = self.interpreter + " -c 'import zlib'" - _, exit_code = self.emulator.run(cmd) + _, exit_code = self.emulator.run(cmd, timeout) self.assertEqual(exit_code, 1) class TestPython2(TestPythonBase): |