summaryrefslogtreecommitdiffstats
path: root/python/run-python-tests
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-11-02 19:42:29 +0000
committerRichard W.M. Jones <rjones@redhat.com>2011-11-02 19:42:29 +0000
commite2249b7ce1dd0a2f8f110e0e47aca397185a6373 (patch)
treec872cc3720037f689a70068631bcf8b7f044a05e /python/run-python-tests
parent25454b83082a4cfed4f1664d2f9cdfcb222ba7c2 (diff)
downloadlibguestfs-e2249b7ce1dd0a2f8f110e0e47aca397185a6373.tar.gz
libguestfs-e2249b7ce1dd0a2f8f110e0e47aca397185a6373.tar.xz
libguestfs-e2249b7ce1dd0a2f8f110e0e47aca397185a6373.zip
python: Pass $PYTHON environment variable to tests.
If the user set PYTHON when configuring, this variable is not passed through to the tests, so it is possible the tests will fail because they are testing the wrong version of python. By passing $PYTHON through to the tests we ensure that we test against the same version of python that we configured with.
Diffstat (limited to 'python/run-python-tests')
-rwxr-xr-xpython/run-python-tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/run-python-tests b/python/run-python-tests
index 487f8ab1..f82dc101 100755
--- a/python/run-python-tests
+++ b/python/run-python-tests
@@ -1,6 +1,6 @@
#!/bin/sh -
# libguestfs Perl bindings
-# Copyright (C) 2009 Red Hat Inc.
+# Copyright (C) 2009-2011 Red Hat Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -19,5 +19,5 @@
set -e
for f in t/*.py; do
- python $f
+ $PYTHON $f
done