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
ee4a5e0c
Commit
ee4a5e0c
authored
Dec 03, 2010
by
Michael Foord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding lib/test/__main__.py for running tests with 'python -m test'
parent
9bd45f99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
Lib/test/__main__.py
Lib/test/__main__.py
+40
-0
No files found.
Lib/test/__main__.py
0 → 100644
View file @
ee4a5e0c
import
os
import
sys
import
sysconfig
from
test
import
support
from
test
import
regrtest
# findtestdir() gets the dirname out of __file__, so we have to make it
# absolute before changing the working directory.
# For example __file__ may be relative when running trace or profile.
# See issue #9323.
__file__
=
os
.
path
.
abspath
(
__file__
)
# sanity check
assert
__file__
==
os
.
path
.
abspath
(
sys
.
argv
[
0
])
# When tests are run from the Python build directory, it is best practice
# to keep the test files in a subfolder. It eases the cleanup of leftover
# files using command "make distclean".
if
sysconfig
.
is_python_build
():
TEMPDIR
=
os
.
path
.
join
(
sysconfig
.
get_config_var
(
'srcdir'
),
'build'
)
TEMPDIR
=
os
.
path
.
abspath
(
TEMPDIR
)
if
not
os
.
path
.
exists
(
TEMPDIR
):
os
.
mkdir
(
TEMPDIR
)
regrtest
.
TEMPDIR
=
TEMPDIR
# Define a writable temp dir that will be used as cwd while running
# the tests. The name of the dir includes the pid to allow parallel
# testing (see the -j option).
TESTCWD
=
'test_python_{}'
.
format
(
os
.
getpid
())
TESTCWD
=
os
.
path
.
join
(
TEMPDIR
,
TESTCWD
)
regrtest
.
TESTCWD
=
TESTCWD
# Run the tests in a context manager that temporary changes the CWD to a
# temporary and writable directory. If it's not possible to create or
# change the CWD, the original CWD will be used. The original CWD is
# available from support.SAVEDCWD.
with
support
.
temp_cwd
(
TESTCWD
,
quiet
=
True
):
regrtest
.
main
()
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