runtest: Fixed regression that prevented using just the -h option.
diff --git a/tools/runtest b/tools/runtest
index 65022f1..ad8ef72 100755
--- a/tools/runtest
+++ b/tools/runtest
@@ -48,7 +48,7 @@
 WINETEST_DEBUG=${WINETEST_DEBUG:-1}
 
 # parse command-line options
-while [ "$#" -gt 1 ]; do
+while [ "$#" -gt 0 ]; do
     case "$1" in
     -h)
 	usage
@@ -76,7 +76,7 @@
 	shift; topobjdir="$1"
 	if [ ! -d "$topobjdir" ]; then usage; fi
     ;;
-    --)
+    *)
 	break
     ;;
     esac