diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2008-07-29 20:25:49 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2008-07-29 20:25:49 +0000 |
| commit | fe73a28361d4b6896d4cfd54379e429ecbdcfedf (patch) | |
| tree | 98fd60e5e408256565bb4d3f7ad1c16e9c21b7a7 /cpp/src/tests/python_tests | |
| parent | 10f23aca8dab83f51cb4fce341dc7fef7dac44b9 (diff) | |
| download | qpid-python-fe73a28361d4b6896d4cfd54379e429ecbdcfedf.tar.gz | |
QPID-1198: (Partial) Fix test shell scripts to work with /bin/sh
Patches from Manuel Teira.
These scripts have #!/bin/sh but they were previously really
dependent on bash.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@680826 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/python_tests')
| -rwxr-xr-x | cpp/src/tests/python_tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/python_tests b/cpp/src/tests/python_tests index 109d01bd5e..896692e41e 100755 --- a/cpp/src/tests/python_tests +++ b/cpp/src/tests/python_tests @@ -2,7 +2,7 @@ # Run the python tests. QPID_PORT=${QPID_PORT:-5672} PYTHON_TESTS=${PYTHON_TESTS:-$*} -MY_DIR=$(dirname $(which $0)) +MY_DIR=`dirname \`which $0\`` QPID_PYTHON_DIR=${QPID_PYTHON_DIR:-${MY_DIR}/../../../python} run() { |
