Add a regression test directory.
This commit is contained in:
parent
f237d44339
commit
9cc31f6aad
5 changed files with 107 additions and 1 deletions
17
test/run-test.sh
Executable file
17
test/run-test.sh
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
export BASE_DIR="`dirname $0`"
|
||||
|
||||
if test -z "$NO_MAKE"; then
|
||||
make -C "$BASE_DIR/../" > /dev/null || exit 1
|
||||
fi
|
||||
|
||||
if test -z "$CUTTER"; then
|
||||
CUTTER="`make -s -C "$BASE_DIR" echo-cutter`"
|
||||
fi
|
||||
|
||||
"$CUTTER" --keep-opening-modules -s "$BASE_DIR" "$@" "$BASE_DIR"
|
||||
# ^^^^^^^^^^^^^^^^^^^^^^
|
||||
# FIXME: Remove this workaround once cutter has been fixed upstream.
|
||||
# Bug report:
|
||||
# http://sourceforge.net/mailarchive/forum.php?thread_name=20100626123941.GA258%40blogreen.org&forum_name=cutter-users-en
|
||||
Loading…
Add table
Add a link
Reference in a new issue