summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2010-04-12 22:34:45 +0000
committerStephen D. Huston <shuston@apache.org>2010-04-12 22:34:45 +0000
commit4410b11926d32d01443bbae306b7445373a8616c (patch)
tree987209af3e4dfcf438ab9878d8a9cb470652243c
parent603d6a84d646187192fcc13790893cdcb8739a37 (diff)
downloadqpid-python-4410b11926d32d01443bbae306b7445373a8616c.tar.gz
Pick up more of the existing test cases from qpid/tests
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@933439 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/tests/python_tests.ps16
1 files changed, 4 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/python_tests.ps1 b/qpid/cpp/src/tests/python_tests.ps1
index ab456a1557..3076d7bf9a 100644
--- a/qpid/cpp/src/tests/python_tests.ps1
+++ b/qpid/cpp/src/tests/python_tests.ps1
@@ -26,6 +26,8 @@ if (!(Test-Path $PYTHON_DIR -pathType Container)) {
exit 1
}
+$PYTHON_TEST_DIR = "$srcdir\..\..\..\tests\src\py"
+
if (Test-Path env:FAILING) {
$fails = "-I $env:FAILING"
}
@@ -37,6 +39,6 @@ else {
}
#cd $PYTHON_DIR
-$env:PYTHONPATH="$PYTHON_DIR;$env:PYTHONPATH"
-python $PYTHON_DIR/qpid-python-test -b localhost:$env:QPID_PORT $fails $tests
+$env:PYTHONPATH="$PYTHON_DIR;$PYTHON_TEST_DIR;$env:PYTHONPATH"
+python $PYTHON_DIR/qpid-python-test -m qpid_tests.broker_0_10 -m qpid.tests -b localhost:$env:QPID_PORT $fails $tests
exit $LASTEXITCODE