Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
512d54fe
Commit
512d54fe
authored
Jan 14, 2012
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Plain Diff
Merge.
parents
d612de10
6c3dd7ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
Lib/test/regrtest.py
Lib/test/regrtest.py
+3
-3
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/regrtest.py
View file @
512d54fe
...
...
@@ -33,7 +33,7 @@ Verbosity
-W/--verbose3 -- display test output on failure
-d/--debug -- print traceback for failed tests
-q/--quiet -- no output unless one or more tests fail
-
S
/--slow -- print the slowest 10 tests
-
o
/--slow -- print the slowest 10 tests
--header -- print header with interpreter info
Selecting tests
...
...
@@ -298,7 +298,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
support
.
record_original_stdout
(
sys
.
stdout
)
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'hvqxsSrf:lu:t:TD:NLR:FwWM:nj:Gm:'
,
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'hvqxs
o
Srf:lu:t:TD:NLR:FwWM:nj:Gm:'
,
[
'help'
,
'verbose'
,
'verbose2'
,
'verbose3'
,
'quiet'
,
'exclude'
,
'single'
,
'slow'
,
'random'
,
'fromfile'
,
'findleaks'
,
'use='
,
'threshold='
,
'trace'
,
'coverdir='
,
'nocoverdir'
,
...
...
@@ -340,7 +340,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
start
=
a
elif
o
in
(
'-s'
,
'--single'
):
single
=
True
elif
o
in
(
'-
S
'
,
'--slow'
):
elif
o
in
(
'-
o
'
,
'--slow'
):
print_slow
=
True
elif
o
in
(
'-r'
,
'--randomize'
):
randomize
=
True
...
...
Misc/NEWS
View file @
512d54fe
...
...
@@ -442,6 +442,9 @@ Core and Builtins
Library
-------
-
Issue
#
13726
:
Fix
the
ambiguous
-
S
flag
in
regrtest
.
It
is
-
o
/--
slow
for
slow
tests
.
-
Issue
#
12364
:
Fix
a
hang
in
concurrent
.
futures
.
ProcessPoolExecutor
.
The
hang
would
occur
when
retrieving
the
result
of
a
scheduled
future
after
the
executor
had
been
shut
down
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment