notmuch/contrib/notmuch-pick/run-tests.sh
Mark Walters 9701e9c7d5 contrib: pick: remove sync tests
Since the previous commit removed the sync parser we may as well
remove its tests too.
2013-08-27 08:01:32 -03:00

46 lines
697 B
Bash
Executable file

#!/usr/bin/env bash
set -eu
fail() {
echo ERROR $1
exit 1
}
TESTS="emacs-pick"
TESTFILES="$TESTS pick.expected-output"
export PICK_DIR="`cd \`dirname "$0"\` && pwd`"
PICK_TEST_DIR="$PICK_DIR/test"
for f in $TESTFILES
do
test -f "$PICK_TEST_DIR/$f" || test -d "$PICK_TEST_DIR/$f" || fail "$PICK_TEST_DIR/$f does not exist"
done
cd "$PICK_DIR/../../test"
test -x ../notmuch || fail "`cd .. && pwd`/notmuch has not been built"
for f in $TESTFILES
do
if test -f "$f"
then
fail "$f exists"
fi
done
trap "rm -f $TESTFILES" 0
for f in $TESTFILES
do
ln -s "$PICK_TEST_DIR/$f" .
done
#don't exec -- traps would not run.
for f in $TESTS
do
echo $f
./$f
done