summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/run_tests.py
Commit message (Collapse)AuthorAgeFilesLines
* regrtest: add -u for unbuffered stdout/stderrVictor Stinner2016-09-211-0/+1
|
* Issue #21907: Exit with the correct return codeZachary Ware2014-07-071-1/+1
|
* Issue #21907: Improved the batch scripts provided for building Python.Zachary Ware2014-07-071-1/+5
| | | | | | The user-facing scripts in PCbuild have been updated to be easier to use and the buildbot scripts in Tools\buildbot have been updated to use the user-facing scripts in PCbuild wherever possible.
* Remove a workaround for fixed issue #20355.Antoine Pitrou2014-04-281-2/+0
|
* Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.Serhiy Storchaka2014-02-241-0/+6
| | | | Patch by Arfrever Frehtes Taifersar Arahesis.
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
| | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script.
* Move private function _args_from_interpreter_flags() to subprocess.py, soAntoine Pitrou2012-05-181-1/+5
| | | | | that it can be imported when threads are disabled. (followup to issue #12098)
* enable hash randomization by defaultBenjamin Peterson2012-02-211-1/+0
|
* Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-0/+1
|
* Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default':Antoine Pitrou2011-10-011-1/+1
| | | | Issue #12804: Prevent "make test" from using network resources.
* Issue #12804: Prevent "make test" from using network resources.Nadeem Vawda2011-08-211-1/+1
|
* Use -n for tests under WindowsAntoine Pitrou2011-08-161-0/+2
|
* Clean up description of Tools/scripts/run_tests.py.Nadeem Vawda2011-08-021-4/+4
| | | | Also, add an entry for the script in Tools/scripts/README.
* Issue #11651: Move options for running tests into a Python script.Nadeem Vawda2011-08-011-0/+45
This will be particularly useful to Windows users. run_tests.py originally written by Brett Cannon.