diff options
author | Andrey Smirnov <andrew.smirnov@gmail.com> | 2017-07-11 19:40:06 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-22 22:52:42 +0200 |
commit | 97278ebddda2e757d71b092b063f04e9f748223c (patch) | |
tree | 3428c15985a0309f8773a5ae507fcc0e7c23304e /support/testing/tests/package/test_python.py | |
parent | b41fc898b45b1afa1362ef7f80eb065bccb42e35 (diff) | |
download | buildroot-97278ebddda2e757d71b092b063f04e9f748223c.tar.gz buildroot-97278ebddda2e757d71b092b063f04e9f748223c.zip |
testing/tests/package/test_python: add TestPython3
Add Python3 version of TestPython2 to make sure both versions of
Python get unit-tested.
Modify the code of libc_time_test() to support that change (convert
the code to use Python3-style "print").
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
[Thomas: update .gitlab-ci.yml.]
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 | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/support/testing/tests/package/test_python.py b/support/testing/tests/package/test_python.py index 250827e93a..218235b442 100644 --- a/support/testing/tests/package/test_python.py +++ b/support/testing/tests/package/test_python.py @@ -26,9 +26,10 @@ BR2_TARGET_ROOTFS_CPIO=y self.assertEqual(exit_code, 0) def libc_time_test(self): - cmd = "python -c 'import ctypes;" + cmd = "python -c 'from __future__ import print_function;" + cmd += "import ctypes;" cmd += "libc = ctypes.cdll.LoadLibrary(\"libc.so.1\");" - cmd += "print libc.time(None)'" + cmd += "print(libc.time(None))'" _, exit_code = self.emulator.run(cmd) self.assertEqual(exit_code, 0) @@ -48,3 +49,15 @@ BR2_PACKAGE_PYTHON=y self.math_floor_test() self.libc_time_test() self.zlib_test() + +class TestPython3(TestPythonBase): + config = TestPythonBase.config + \ +""" +BR2_PACKAGE_PYTHON3=y +""" + def test_run(self): + self.login() + self.version_test("Python 3") + self.math_floor_test() + self.libc_time_test() + self.zlib_test() |