summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtester/run6
1 files changed, 3 insertions, 3 deletions
diff --git a/tester/run b/tester/run
index 896375a..856d605 100755
--- a/tester/run
+++ b/tester/run
@@ -6,7 +6,7 @@
### test case return codes ###
# basic error codes
-export DTF_RESULT_SUCCES=0
+export DTF_RESULT_SUCCESS=0
export DTF_RESULT_FAILURE=1
export DTF_RESULT_EXP_FAILURE=2
@@ -50,7 +50,7 @@ export dtf_option_listonly=0
info()
{
- echo " * $@"
+ echo " * $*"
}
die()
@@ -219,7 +219,7 @@ while read i; do
testdir=$(dirname "$i")
run_test "$testdir"
case "$?" in
- $DTF_RESULT_SUCCES)
+ $DTF_RESULT_SUCCESS)
echo "[ OK ]"
;;
$DTF_RESULT_EXP_FAILURE)