Add a command line option to set the -u flag.

This commit is contained in:
Guido van Rossum 2007-07-23 02:57:24 +00:00
parent accecdf969
commit 3698746585
1 changed files with 7 additions and 1 deletions

View File

@ -25,8 +25,14 @@ mkdir -p OUT
>BAD >BAD
>SKIPPED >SKIPPED
# The -u flag (edit this file to change). # The -u flag.
UFLAG="" UFLAG=""
case $1 in
-u)
UFLAG="$1 $2"; shift; shift;;
-u*)
UFLAG="$1"; shift;;
esac
# Compute the list of tests to run. # Compute the list of tests to run.
case $# in case $# in