diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-10-22 19:10:49 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-10-22 19:10:49 +0200 |
commit | 1c493315c5b1ba13cc68df85ba02fa06b13ad001 (patch) | |
tree | 21b12bdd83d26ed11ca76b9e0a09d45620d6c2cb /test/libapt | |
parent | 4260fd3972cc0c01e6cbc825063c06311d440f9b (diff) |
dpkg doesn't like underscores in versions anymore (=it fails) so our
behaviour can be undefined… (or at least can't be tested against dpkg)
Diffstat (limited to 'test/libapt')
-rwxr-xr-x | test/libapt/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libapt/run-tests b/test/libapt/run-tests index 0f55f7386..f5fc03446 100755 --- a/test/libapt/run-tests +++ b/test/libapt/run-tests @@ -4,7 +4,7 @@ set -e 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) +(cd $DIR && make) echo "Running all testcases …" LDPATH="$DIR/../../build/bin" EXT="_libapt_test" |