- 01 Eki, 2015 5 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
Victor Stinner yazdı
On the x86 OpenBSD 5.8 buildbot, the integer overflow check is ignored. Copy the tv_sec variable into a Py_time_t variable instead of "simply" casting it to Py_time_t, to fix the integer overflow check.
-
Raymond Hettinger yazdı
-
- 30 Eyl, 2015 16 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #25260: Fix ``python -m test --coverage`` on Windows. Remove the list of ignored directories.
-
Victor Stinner yazdı
OpenBSD", I'm not sure that the change was really needed. I read the test result of an old build because the OpenBSD was 100 builds late.
-
Victor Stinner yazdı
Patch written by Remi Pointel.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Restore also errno value before calling PyErr_SetFromErrno().
-
Serhiy Storchaka yazdı
imported at startup) now uses the backslashreplace error handler.
-
Serhiy Storchaka yazdı
imported at startup) now uses the backslashreplace error handler.
-
Serhiy Storchaka yazdı
imported at startup) now uses the backslashreplace error handler.
-
Victor Stinner yazdı
* Fix "-m test --forever": replace _test_forever() with self._test_forever() * Add unit test for --forever * Add unit test for a failing test * Fix also some pyflakes warnings in libregrtest
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
When the -jN command line option is used, display tests running since at least 30 seconds every minute.
-
Victor Stinner yazdı
No need to support.verbose in Regrtest.run_tests(), it's always set in runtest().
-
Victor Stinner yazdı
* Remove runtest_ns(): pass directly ns to runtest(). * Create also Regrtest.rerun_failed_tests() method. * Inline again Regrtest.run_test(): it's no more justified to have a method
-
Victor Stinner yazdı
* Rename setup_python() to setup_tests() * Remove use_resources parameter of runtest()
-
Victor Stinner yazdı
-
- 29 Eyl, 2015 19 kayıt (commit)
-
-
Victor Stinner yazdı
Slaves (child processes running tests for regrtest -jN) now inherit --memlimit/-M, --threshold/-t and --nowindows/-n options. * -M, -t and -n are now supported with -jN * Factorize code to run tests. * run_test_in_subprocess() now pass the whole "ns" namespace to the child process.
-
Victor Stinner yazdı
* Factorize code to run tests. * run_test_in_subprocess() now pass the whole "ns" namespace to the child process.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Running the Python test suite with -jN now: - Display the duration of tests which took longer than 30 seconds - Display the tests currently running since at least 30 seconds - Display the tests we are waiting for when the test suite is interrupted Clenaup also run_test_in_subprocess() code.
-
Victor Stinner yazdı
Python doesn't display the refcount anymore by default. It only displays it when -X showrefcount command line option is used, which is not the case here. regrtest can be run with -X showrefcount, the option is not inherited by child processes.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Add a new Regrtest.run_test() method to ensure that --coverage pass the same options to the runtest() function.
-
Victor Stinner yazdı
Move the code to run tests in multiple processes using threading and subprocess to a new submodule. Move also slave_runner() (renamed to run_tests_slave()) and run_test_in_subprocess() (renamed to run_tests_in_subprocess()) there.
-
Serhiy Storchaka yazdı
now accept the self and the dict keyword arguments.
-
Serhiy Storchaka yazdı
now accept the self and the dict keyword arguments.
-
Victor Stinner yazdı
with attributes and methods. The --threshold command line option is now ignored if the gc module is missing. * Convert main() variables to Regrtest attributes, document some attributes * Convert accumulate_result() function to a method * Create setup_python() function and setup_regrtest() method. * Import gc at top level * Move resource.setrlimit() and the code to make the module paths absolute into the new setup_python() function. So this code is no more executed when the module is imported, only when main() is executed. We have a better control on when the setup is done. * Move textwrap import from printlist() to the top level. * Some other minor cleanup.
-
Serhiy Storchaka yazdı
now accept the self and the dict keyword arguments.
-
Serhiy Storchaka yazdı
argument.
-
Serhiy Storchaka yazdı
argument.
-
Serhiy Storchaka yazdı
argument.
-