summaryrefslogtreecommitdiff
path: root/cpp/src/tests/python_tests
blob: ce6b1f38104a88fb1e7f2c5b9c3f9109690f1cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# Run the python tests.
QPID_PORT=${QPID_PORT:-5672}
PYTHON_TESTS=${PYTHON_TESTS:-$*}
MY_DIR=$(dirname $(which $0))
PYTHON_DIR=${MY_DIR}/../../../python

run() {
    SPEC=$1
    FAILING=$2
    ./run-tests --skip-self-test -v -s $SPEC -I $FAILING -b localhost:$QPID_PORT $PYTHON_TESTS || { echo "FAIL python tests for $SPEC"; exit 1; }
}

if test -d ${PYTHON_DIR} ;  then
    cd ${PYTHON_DIR}
    run 0-10-errata cpp_failing_0-10.txt
    if test -z "$QPID_NO_PREVIEW" ; then run ../specs/amqp.0-10-preview.xml cpp_failing_0-10_preview.txt; fi
else
    echo Warning: python tests not found.
fi