Add a command line option to set the -u flag.
diff --git a/runtests.sh b/runtests.sh
index 837aab2..2530390 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -25,8 +25,14 @@
 >BAD
 >SKIPPED
 
-# The -u flag (edit this file to change).
+# The -u flag.
 UFLAG=""
+case $1 in
+-u)
+    UFLAG="$1 $2"; shift; shift;;
+-u*)
+    UFLAG="$1"; shift;;
+esac
 
 # Compute the list of tests to run.
 case $# in