summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason Lowe-Power <jason@lowepower.com>2017-02-10 10:00:18 -0500
committerJason Lowe-Power <jason@lowepower.com>2017-02-10 10:00:18 -0500
commit87b9f0b87b748fb8db87e2ff81d74bb76ec4769b (patch)
treeace32dd80b4425dcc76f18ff94e9e5a9be014bc8 /tests
parent76004f08f26763cd5c1c9053d7981734db74fbd6 (diff)
downloadgem5-87b9f0b87b748fb8db87e2ff81d74bb76ec4769b.tar.xz
misc: Update #!env calls for python to explicit version
In some newer Linux distributions, env python default to Python 3.0. This patch explicitly uses "python2" instead of just "python" for all scripts that use #! Reported-by: Sanchayan Maity <maitysanchayan@gmail.com> Signed-off-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/testing/__init__.py2
-rwxr-xr-xtests/testing/helpers.py2
-rw-r--r--tests/testing/results.py2
-rw-r--r--tests/testing/tests.py2
-rw-r--r--tests/testing/units.py2
-rwxr-xr-xtests/tests.py2
6 files changed, 6 insertions, 6 deletions
diff --git a/tests/testing/__init__.py b/tests/testing/__init__.py
index e7c83da10..1bc471108 100644
--- a/tests/testing/__init__.py
+++ b/tests/testing/__init__.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
#
# Copyright (c) 2016 ARM Limited
# All rights reserved
diff --git a/tests/testing/helpers.py b/tests/testing/helpers.py
index 757167a4b..e2f3fbe7d 100755
--- a/tests/testing/helpers.py
+++ b/tests/testing/helpers.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
#
# Copyright (c) 2016 ARM Limited
# All rights reserved
diff --git a/tests/testing/results.py b/tests/testing/results.py
index 1df14bc4f..387362a75 100644
--- a/tests/testing/results.py
+++ b/tests/testing/results.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
#
# Copyright (c) 2016 ARM Limited
# All rights reserved
diff --git a/tests/testing/tests.py b/tests/testing/tests.py
index 6f887ff80..c9a2a06b2 100644
--- a/tests/testing/tests.py
+++ b/tests/testing/tests.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
#
# Copyright (c) 2016 ARM Limited
# All rights reserved
diff --git a/tests/testing/units.py b/tests/testing/units.py
index 6214c8f14..808763fcc 100644
--- a/tests/testing/units.py
+++ b/tests/testing/units.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
#
# Copyright (c) 2016 ARM Limited
# All rights reserved
diff --git a/tests/tests.py b/tests/tests.py
index 85b194c56..136c879aa 100755
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
#
# Copyright (c) 2016 ARM Limited
# All rights reserved