summaryrefslogtreecommitdiff
path: root/tko
diff options
context:
space:
mode:
authormbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4>2009-06-22 19:03:08 +0000
committermbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4>2009-06-22 19:03:08 +0000
commitcf465979df89ee96068cfe81a06c4908d5aa1bbf (patch)
tree20e9d1c1e6d7e95bca3ef93c1b10b4757849ae07 /tko
parent69ca43caa1af0a1a799e2d8f87614692a1e08ae8 (diff)
Not all distros put a symlink in for the python version. However
all should have a /usr/bin/python target. There are still a couple files that hardcode a /usr/lib/python2.4 path, but that's a harder problem to solve and outside the scope of this patch. Signed-off-by: Jesse Keating <jkeating@redhat.com> git-svn-id: svn://test.kernel.org/autotest/trunk@3319 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'tko')
-rw-r--r--tko/parsers/test/inspect_parser_result_store.py2
-rw-r--r--tko/parsers/test/new_scenario.py2
-rw-r--r--tko/parsers/test/templates/base.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tko/parsers/test/inspect_parser_result_store.py b/tko/parsers/test/inspect_parser_result_store.py
index 25af35d1..458b637d 100644
--- a/tko/parsers/test/inspect_parser_result_store.py
+++ b/tko/parsers/test/inspect_parser_result_store.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.4 -i
+#!/usr/bin/python -i
"""Inspector for parser_result.store from specified scenerio package.
Load in parser_result.store as 'sto' and launch interactive interp.
diff --git a/tko/parsers/test/new_scenario.py b/tko/parsers/test/new_scenario.py
index 66b2c9e5..37efdcfc 100644
--- a/tko/parsers/test/new_scenario.py
+++ b/tko/parsers/test/new_scenario.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.4
+#!/usr/bin/python
"""Create new scenario test instance from an existing results directory.
This automates creation of regression tests for the results parsers.
diff --git a/tko/parsers/test/templates/base.py b/tko/parsers/test/templates/base.py
index af1bbfcb..15f43600 100644
--- a/tko/parsers/test/templates/base.py
+++ b/tko/parsers/test/templates/base.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.4
+#!/usr/bin/python
"""
This is not meant to be executed unless copied into a
scenario package and renamed with a _unittest suffix.