]>
Commit | Line | Data |
---|---|---|
fdef7c5e MV |
1 | #!/bin/sh |
2 | ||
3 | set -e | |
4 | ||
fc104da6 MP |
5 | unset LANGUAGE |
6 | export LC_ALL=C | |
7 | ||
5c0dd6fc MV |
8 | # we need the buildin webserver for the tests |
9 | if [ ! -e environment.mak ]; then | |
28b4b983 | 10 | make startup |
5c0dd6fc MV |
11 | fi |
12 | make -C test/interactive-helper/ | |
13 | ||
14 | # run against the installed apt | |
15 | APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR=$(pwd)/build/bin \ | |
16 | APT_INTEGRATION_TESTS_METHODS_DIR=/usr/lib/apt/methods \ | |
e43a426e | 17 | APT_INTEGRATION_TESTS_LIBEXEC_DIR=/usr/lib/apt/ \ |
5c0dd6fc MV |
18 | APT_INTEGRATION_TESTS_BUILD_DIR=/usr/bin \ |
19 | ./test/integration/run-tests |