diff options
author | Stoiko Ivanov <[email protected]> | 2019-05-23 15:22:27 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-05-28 15:06:07 -0700 |
commit | 3ba8cd6d0ef6d760c7a61861906144dad6e29a13 (patch) | |
tree | 1ac31fe8c1bb93914095328a97f68aba75031abe /tests/test-runner/bin/test-runner.py | |
parent | 0869b74a1edc1e3375b560f788038615f37feac4 (diff) |
test-runner.py: change shebang to python3
In commit 6e72a5b9b61066146deafda39ab8158c559f5f15 python scripts which
work with python2 and python3 changed the shebang from /usr/bin/python
to /usr/bin/python3. This gets adapted by the build-system on systems
which don't provide python3.
This commit changes test-runner.py to also use /usr/bin/python3,
enabling the change during buildtime and fixing a minor lintian issue
for those Debian packages, which depend on a specific python version
(python3/python2).
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: loli10K <[email protected]>
Reviewed by: John Kennedy <[email protected]>
Signed-off-by: Stoiko Ivanov <[email protected]>
Closes #8803
Diffstat (limited to 'tests/test-runner/bin/test-runner.py')
-rwxr-xr-x | tests/test-runner/bin/test-runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-runner/bin/test-runner.py b/tests/test-runner/bin/test-runner.py index ea37e8ab6..4d4fd96ad 100755 --- a/tests/test-runner/bin/test-runner.py +++ b/tests/test-runner/bin/test-runner.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # This file and its contents are supplied under the terms of the |