aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/jobset.py
Commit message (Collapse)AuthorAge
* Expand error handling to ignore all errors printing outputGravatar Craig Tiller2015-08-25
|
* Merge pull request #2799 from ctiller/selective-townGravatar Jan Tattermusch2015-08-14
|\ | | | | Give make a long timeout, tests a small one, and interop a slightly longer one
* | Reducing JUnit's report size.Gravatar Nicolas "Pixel" Noble2015-08-13
| |
| * BikesheddingGravatar Craig Tiller2015-08-05
| |
| * Give make a long timeout, tests a small one, and interop a slightly longer oneGravatar Craig Tiller2015-08-05
|/
* Merge github.com:grpc/grpc into kinetic-lopsided-poetryGravatar Craig Tiller2015-08-05
|\
* | Testing port serverGravatar Craig Tiller2015-08-04
| | | | | | | | | | | | | | | | run_tests.py will start a server (if it's not running, or if the running port server mismatches the 'current' one) that serves ports to use for tests. The server is left running after run_tests.py finishes, so that in environments such as Mac and Windows where tests run unshielded from each other, we don't start jumping on already used ports.
| * polishing runtestsGravatar Jan Tattermusch2015-08-01
|/
* Adding c++ interop (cloud to prod) to jenkins work flow.Gravatar Donna Dionne2015-07-27
| | | | First effort in adding interop to jenkins work flow, more languages will follow.
* Filtering stdout for JUnit report in case of timeouts.Gravatar Nicolas "Pixel" Noble2015-07-12
| | | | We're not properly filtering stdout in case we're timeouting. This generates invalid XML output.
* Increase timeouts for testsGravatar Craig Tiller2015-07-10
|
* Merge pull request #2243 from soltanmm/cycyGravatar Jorge Canizales2015-07-09
|\ | | | | Cython refactor of Python C wrapping layer
| * Add Python3 testing supportGravatar Masood Malekghassemi2015-07-09
| | | | | | | | | | Conditionally runs the tests depending on the availability of Python versions (because Travis is the worst).
* | Merge non-tty path with Windows path since they do the same thingGravatar vjpai2015-07-08
| |
* | Stop sending terminal escape sequences if we're redirecting output to a file.Gravatar vjpai2015-07-08
|/
* Exporting XML reports, JUnit-compatible.Gravatar Nicolas "Pixel" Noble2015-06-26
|
* Speed up hash checks, crash on first TSAN errorGravatar Craig Tiller2015-06-11
|
* Improvements to the way we randomize test runs.Gravatar David Garcia Quintas2015-06-02
|
* Addressed comments: fixed memory leak introduced by changes.Gravatar David Garcia Quintas2015-06-01
|
* Added "inf" as a valid option to run_test.py's -n flag.Gravatar David Garcia Quintas2015-05-31
| | | | Especially useful in combination with -f.
* Add fast stopGravatar Craig Tiller2015-05-29
| | | | | Allows run_tests to early out as soon as a test fails. Plays well with -f.
* Include pid in failuresGravatar Craig Tiller2015-05-19
|
* Prevents run_tests from spamming.Gravatar Nicolas "Pixel" Noble2015-05-13
|
* Make runtests print logs on timed out testsGravatar Craig Tiller2015-05-12
|
* fixes to run_tests.py to at least start building tests on WindowsGravatar Jan Tattermusch2015-04-20
|
* Spam cleanupGravatar Craig Tiller2015-04-08
|
* Initial porting of run_tests to WindowsGravatar Craig Tiller2015-04-08
|
* Unconditionally add a newline if a test times out or fails.Gravatar David Klempner2015-03-17
| | | | | Failure should generally result in output unless something goes wrong, but timeout currently doesn't, but should be printed 100% of the time.
* Added CONFIG environment variable to build and test scripts, fixed some bugsGravatar murgatroid992015-03-04
|
* Make timeout redGravatar Craig Tiller2015-02-27
|
* Force-kill long running processesGravatar Craig Tiller2015-02-26
| | | | To get at least some information on them
* Fix sortingGravatar Craig Tiller2015-02-26
|
* Better logging for TravisGravatar Craig Tiller2015-02-26
|
* Add timer to run_tests.pyGravatar Craig Tiller2015-02-26
| | | | For future profiling work to eliminate/speed-up slow tests.
* Improving travis output.Gravatar Nicolas "Pixel" Noble2015-02-26
|
* Support writes failingGravatar Craig Tiller2015-02-24
|
* Use signals instead of sleep to wait for jobsGravatar Craig Tiller2015-02-24
|
* Add copyrights to Python codeGravatar Craig Tiller2015-02-16
|
* Allow specifying environment variables.Gravatar Craig Tiller2015-01-30
| | | | Refactor the code a little to make this easier to munge around.
* Surface failure countGravatar Craig Tiller2015-01-21
|
* Cache for successful test runsGravatar Craig Tiller2015-01-15
| | | | | | By default don't re-run tests that have already run successfully, to reduce latency between making a change and seeing if it fixed the last thing that you were trying to fix.
* Addressing pull request comments.Gravatar Nicolas Noble2015-01-14
| | | | | -) Fixing long line length. -) Changed the logic of the exit message.
* Various cosmetic improvements to run_tests.pyGravatar Nicolas Noble2015-01-14
| | | | | | | | | -) Adding a new command line flag to be able to see which tests are passing. -) Adding more status when the tool is idle in forever mode. -) Adding a last status when the tool is finished so to avoid leaving the console in a weird state. -) Adding a status message in the forever mode if the previous run failed. -) Swapped the message and its explanation, so you don't have to scroll up to see which test failed. -) Fixed a race condition in the watch_dir.py code if a file is deleted during the loop.
* Merge github.com:google/grpcGravatar Craig Tiller2015-01-12
|\
* | Allow running tests under valgrindGravatar Craig Tiller2015-01-12
| |
* | Cleanup and fixes to jobset.pyGravatar Craig Tiller2015-01-12
| |
| * Only run one make at a time.Gravatar ctiller2015-01-09
|/ | | | | | | | If openssl has not been built, running parallel make processes causes some problems. Change on 2015/01/09 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83617340
* Add a --forever flag, to continuously run tests as things change.Gravatar ctiller2015-01-08
| | | | | | | Change on 2015/01/07 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83451760
* Adding the tools directory to the git export.Gravatar Nicolas Noble2015-01-06