Commit 36987465 authored by Guido van Rossum's avatar Guido van Rossum

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

parent accecdf9
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment