diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-07-29 11:37:05 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-07-29 11:37:05 +0200 |
commit | 1b8ba3ba050f01db27f1ddc0e5b280b2fccd9fb9 (patch) | |
tree | 4c95c5ad0b62ae2e3ad155a89f3997efe5109c28 /test/libapt | |
parent | 15032eec2d508df3c63b532be22f488d240159a2 (diff) | |
parent | 3de4647b39216259678f40f4bf6e8122acd923b5 (diff) |
merged lp:~donkult/apt/sid
Diffstat (limited to 'test/libapt')
-rwxr-xr-x | test/libapt/run-tests (renamed from test/libapt/run-tests.sh) | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/libapt/run-tests.sh b/test/libapt/run-tests index cb7769e4a..0f55f7386 100755 --- a/test/libapt/run-tests.sh +++ b/test/libapt/run-tests @@ -1,11 +1,12 @@ #!/bin/sh set -e -echo "Compiling the tests ..." -test -d '../../build/obj/test/libapt/' || mkdir -p '../../build/obj/test/libapt/' -make -echo "Running all testcases ..." -LDPATH=$(pwd)/../../build/bin +local DIR=$(readlink -f $(dirname $0)) +echo "Compiling the tests …" +test -d "$DIR/../../build/obj/test/libapt/" || mkdir -p "$DIR/../../build/obj/test/libapt/" +$(cd $DIR && make) +echo "Running all testcases …" +LDPATH="$DIR/../../build/bin" EXT="_libapt_test" for testapp in $(ls ${LDPATH}/*$EXT) do |