aboutsummaryrefslogtreecommitdiff
path: root/scripts/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test.sh')
-rwxr-xr-xscripts/test.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/test.sh b/scripts/test.sh
index 2276619e..0c3d7aaf 100755
--- a/scripts/test.sh
+++ b/scripts/test.sh
@@ -29,12 +29,15 @@ if [ $# -ne 0 ]
then
for i in "$@"
do
+ CMDNAME="${i##*/}"
+ CMDNAME="${CMDNAME%.test}"
. "$TOPDIR"/tests/$i.test
done
else
for i in "$TOPDIR"/tests/*.test
do
- CMDNAME="$(echo "$i" | sed 's@.*/\(.*\)\.test@\1@')"
+ CMDNAME="${i##*/}"
+ CMDNAME="${CMDNAME%.test}"
if [ -h ../$CMDNAME ] || [ ! -z "$TEST_HOST" ]
then
cd .. && rm -rf testdir && mkdir testdir && cd testdir || exit 1