diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-12-10 21:48:54 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-12-10 21:48:54 +0100 |
commit | 9d20d8c8eb99ff85d082956813c3d624132d5399 (patch) | |
tree | d0b37eb0c318163df567c5067214136aeff13b9f /test/libapt | |
parent | 3f35be50ee4cb425b08139d4ccf5b54d527fe700 (diff) |
merged -r 1920..1922 from lp:~donkult/apt/sid
Diffstat (limited to 'test/libapt')
-rwxr-xr-x | test/libapt/run-tests.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/libapt/run-tests.sh b/test/libapt/run-tests.sh new file mode 100755 index 000000000..365bbe215 --- /dev/null +++ b/test/libapt/run-tests.sh @@ -0,0 +1,10 @@ +#!/bin/sh +echo "Compiling the tests ..." +make +echo "Running all testcases ..." +PATH=$(pwd)/../../build/bin +for testapp in $(/bin/ls ${PATH}/*_libapt_test) +do + echo -n "Testing with \033[1;35m$(/usr/bin/basename ${testapp})\033[0m ... " + LD_LIBRARY_PATH=${PATH} ${testapp} && echo "\033[1;32mOKAY\033[0m" || echo "\033[1;31mFAILED\033[0m" +done |