diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-02-26 18:56:57 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-02-26 18:56:57 +0200 |
commit | 662be3dbb1f5c193bef17467c3183a32ff46d4e9 (patch) | |
tree | 9996951db93c289422a83a2ca4efed7c9b82f6fd | |
parent | 6ba034c37d8004a72d392f37f66e709c593d8983 (diff) | |
download | meson-simpletest.tar.gz |
Python usage fix for tests from Stefano Rivera.simpletest
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index aa27a1d20..62f8253d4 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -6870,7 +6870,7 @@ class NativeFileTests(BasePlatformTests): # remove the build dependency on python2-dev. Keep the tests # but only run them if dev packages are available. raise unittest.SkipTest('Not running Python 2 tests because dev packages not installed.') - self._simple_test('python', 'python') + self._simple_test('python', 'python2') @unittest.skipIf(is_windows(), 'Setting up multiple compilers on windows is hard') @skip_if_env_set('CC') |