summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Adding the -o option for Issue13726Senthil Kumaran2012-01-141-1/+1
| | |
* | | merge from 3.2Senthil Kumaran2012-01-141-2/+2
|\ \ \ | |/ /
| * | Issue13726 - Fix the ambiguous -S flag in regrtest. It is -o/--slow for ↵Senthil Kumaran2012-01-141-2/+2
| | | | | | | | | | | | printing the 10 slowest test.
* | | Merge 3.2Éric Araujo2011-11-291-0/+18
|\ \ \ | |/ /
| * | Add a regrtest cleanup check for shutil registriesÉric Araujo2011-11-291-0/+19
| | |
* | | Issue #13380: add an internal function for resetting the ctypes cachesMeador Inge2011-11-261-0/+7
|\ \ \ | |/ /
| * | Issue #13380: add an internal function for resetting the ctypes cachesMeador Inge2011-11-261-0/+7
| | |
* | | Branch mergeÉric Araujo2011-11-151-1/+1
|\ \ \
| * | | Fix a few typosÉric Araujo2011-11-141-1/+1
| | | |
* | | | Mark test_devpoll as unexpected on most platformsAntoine Pitrou2011-11-151-0/+7
|/ / /
* | | Make sure packaging tests that register custom commands also clear themÉric Araujo2011-11-061-1/+18
| | |
* | | Simplify and remove few dependencies on 'errno', thanks to PEP 3151.Florent Xicluna2011-10-281-4/+2
| | |
* | | Add regrtest check for caches in packaging.database (see #12167)Éric Araujo2011-10-061-0/+24
| | |
* | | Make regrtest look at internal dicts in sysconfig.Éric Araujo2011-09-191-1/+24
| | | | | | | | | | | | | | | This reveals problems in the packaging test suite, which I’ll look into after the regrtest checks are made more usable (see #12314).
* | | Merge: Make regrtest complain when -M and -j are used together.Nadeem Vawda2011-08-271-0/+2
|\ \ \ | |/ / | | | | | | | | | | | | | | | -j doesn't pass the memlimit on to child processes, so this doesn't work at present, and even if it did, running multiple bigmem tests at once would usually not be desirable (since you generally want to devote as much of the available RAM as possible to each test).
| * | Make regrtest complain when -M and -j are used together.Nadeem Vawda2011-08-271-0/+2
| | | | | | | | | | | | | | | | | | | | | -j doesn't pass the memlimit on to child processes, so this doesn't work at present, and even if it did, running multiple bigmem tests at once would usually not be desirable (since you generally want to devote as much of the available RAM as possible to each test).
* | | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe.Antoine Pitrou2011-08-231-1/+0
|\ \ \ | |/ / | | | | | | Also added some tests.
| * | A warning doesn't equate a failed testAntoine Pitrou2011-08-231-1/+0
| | | | | | | | | | | | (this broken -F with e.g. test_multiprocessing)
* | | Issue #12326: don't test the major version of sys.platformVictor Stinner2011-08-171-37/+37
| | | | | | | | | | | | | | | Use startswith, instead of ==, when testing sys.platform to support new platforms like Linux 3 or OpenBSD 5.
* | | Issue #11651: Move options for running tests into a Python script.Nadeem Vawda2011-08-011-0/+7
| | | | | | | | | | | | | | | | | | This will be particularly useful to Windows users. run_tests.py originally written by Brett Cannon.
* | | Issue #12626: In regrtest, allow to filter tests using a glob filterAntoine Pitrou2011-07-291-6/+13
|\ \ \ | |/ / | | | | | | | | | | | | with the `-m` (or `--match`) option. This works with all test cases using the unittest module. This is useful with long test suites such as test_io or test_subprocess.
| * | Issue #12626: In regrtest, allow to filter tests using a glob filterAntoine Pitrou2011-07-291-6/+10
| | | | | | | | | | | | | | | | | | with the `-m` (or `--match`) option. This works with all test cases using the unittest module. This is useful with long test suites such as test_io or test_subprocess.
* | | Issue #11049: added test_support to regrtest.STDTESTS listEli Bendersky2011-07-271-0/+1
| | |
* | | Issue #12624: It is now possible to fail after the first failure whenAntoine Pitrou2011-07-231-6/+15
|\ \ \ | |/ / | | | | | | | | | | | | running in verbose mode (`-v` or `-W`), by using the `--failfast` (or `-G`) option to regrtest. This is useful with long test suites such as test_io or test_subprocess.
| * | Issue #12624: It is now possible to fail after the first failure whenAntoine Pitrou2011-07-231-6/+15
| | | | | | | | | | | | | | | | | | running in verbose mode (`-v` or `-W`), by using the `--failfast` (or `-G`) option to regrtest. This is useful with long test suites such as test_io or test_subprocess.
* | | Issue #12573: Add resource checks for dangling Thread and Process objects.Antoine Pitrou2011-07-151-1/+36
|\ \ \ | |/ /
| * | Issue #12573: Add resource checks for dangling Thread and Process objects.Antoine Pitrou2011-07-151-1/+36
| | |
* | | Issue #12550: regrtest displays the Python traceback on SIGALRM or SIGUSR1Victor Stinner2011-07-131-1/+11
| | |
* | | (merge 3.2) Issue #12400: regrtest.runtest() uses stream.seek(0) before ↵Victor Stinner2011-06-291-3/+6
|\ \ \ | |/ / | | | | | | | | | | | | .truncate() .truncate(0) doesn't rewind.
| * | Issue #12400: regrtest.runtest() uses stream.seek(0) before .truncate()Victor Stinner2011-06-291-3/+6
| | | | | | | | | | | | .truncate(0) doesn't rewind.
* | | (merge 3.2) Issue #12400: runtest() truncates the StringIO stream before a newVictor Stinner2011-06-291-0/+1
|\ \ \ | |/ / | | | | | | test
| * | Issue #12400: runtest() truncates the StringIO stream before a new testVictor Stinner2011-06-291-0/+1
| | |
* | | (merge 3.2) Issue #12400: regrtest, force verbose mode to True with option -WVictor Stinner2011-06-291-7/+10
|\ \ \ | |/ / | | | | | | If verbose is False, the output is empty. Fix also a typo in a variable name.
| * | Issue #12400: regrtest, force verbose mode to True with option -WVictor Stinner2011-06-291-7/+10
| | | | | | | | | | | | If verbose is False, the output is empty. Fix also a typo in a variable name.
* | | (merge 3.2) Issue #12400: runtest() reuses the same io.StringIO instance forVictor Stinner2011-06-291-24/+34
|\ \ \ | |/ / | | | | | | | | | | | | | | | all calls * Don't force verbose to True with option -W * Rename rerun_failed variable to output_on_failure
| * | Issue #12400: runtest() reuses the same io.StringIO instance for all callsVictor Stinner2011-06-291-24/+33
| | | | | | | | | | | | | | | * Don't force verbose to True with option -W * Rename rerun_failed variable to output_on_failure
* | | (merge 3.2) Issue #12400: remove unused importVictor Stinner2011-06-291-1/+0
|\ \ \ | |/ /
| * | Issue #12400: remove unused variableVictor Stinner2011-06-291-5/+0
| | |
* | | (merge 3.2) Issue #12400: regrtest -W doesn't rerun the tests twice anymore,Victor Stinner2011-06-291-11/+25
|\ \ \ | |/ / | | | | | | | | | but captures the output and displays it on failure instead. regrtest -v doesn't print the error twice anymore if there is only one error.
| * | Issue #12400: regrtest -W doesn't rerun the tests twice anymore, but capturesVictor Stinner2011-06-291-11/+25
| | | | | | | | | | | | | | | the output and displays it on failure instead. regrtest -v doesn't print the error twice anymore if there is only one error.
* | | Issue #12250: regrtest --timeout displays a warning instead of failing with anVictor Stinner2011-06-061-6/+7
| | | | | | | | | | | | | | | error if faulthandler.dump_tracebacks_later() is missing (e.g. if Python is compiled without threads).
* | | Issue #12250: modify "make buildbottest" command line instead of TESTOPTSVictor Stinner2011-06-061-3/+3
| | | | | | | | | | | | | | | | | | | | | Add TESTTIMEOUT variable (default: 3600 seconds). Use TESTTIMEOUT=0 to disable the timeout. *** fix
* | | Close #12250: Disable the regrtest timeout by defaultVictor Stinner2011-06-031-9/+7
| | | | | | | | | | | | Keep a timeout of 1 hour for buildbots.
* | | Close #12089: Remove outdated and unused code from regrtest.Victor Stinner2011-05-301-4/+0
| | |
* | | Issue #8533: regrtest replaces also sys.stdout on WindowsVictor Stinner2011-05-251-5/+2
| | | | | | | | | | | | | | | Replace sys.stdout to use backslashreplace. Use '\n' newline on all operating systems.
* | | #12074: merge with 3.2.Ezio Melotti2011-05-231-2/+4
|\ \ \ | |/ /
| * | #12074: remove the /0 when there are no failures.Ezio Melotti2011-05-231-2/+4
| | |
* | | (Merge 3.2) Issue #12074: regrtest displays also the current number of failuresVictor Stinner2011-05-231-5/+6
|\ \ \ | |/ /
| * | Issue #12074: regrtest displays also the current number of failuresVictor Stinner2011-05-231-5/+6
| | |
* | | regrtest: enable faulthandler in main() instead of if __name__ == '__main__':Victor Stinner2011-05-221-3/+4
| | | | | | | | | | | | So it's also enabled when using "./python -m test".