From: Guido van Rossum Date: Mon, 23 Jul 2007 02:57:24 +0000 (+0000) Subject: Add a command line option to set the -u flag. X-Git-Tag: v3.0a1~590 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3698746585c1e06d43f231da51175dabba35250f;p=thirdparty%2FPython%2Fcpython.git Add a command line option to set the -u flag. --- diff --git a/runtests.sh b/runtests.sh index 837aab2ee1d9..25303904b84f 100755 --- a/runtests.sh +++ b/runtests.sh @@ -25,8 +25,14 @@ mkdir -p OUT >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