Author: guido.van.rossum Date: Mon Jul 23 04:57:24 2007 New Revision: 56502
Modified: python/branches/py3k-struni/runtests.sh Log: Add a command line option to set the -u flag. Modified: python/branches/py3k-struni/runtests.sh ============================================================================== --- python/branches/py3k-struni/runtests.sh (original) +++ python/branches/py3k-struni/runtests.sh Mon Jul 23 04:57:24 2007 @@ -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 _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
