mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Add a command line option to set the -u flag.
This commit is contained in:
parent
accecdf969
commit
3698746585
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue