| OLD | NEW |
| 1 typ (Test Your Program) | 1 typ (Test Your Program) |
| 2 ======================= | 2 ======================= |
| 3 typ is a simple program for testing command line executables and Python code. | 3 typ is a simple program for testing command line executables and Python code. |
| 4 | 4 |
| 5 When testing Python code, it is basically a wrapper around the standard | 5 When testing Python code, it is basically a wrapper around the standard |
| 6 unittest module, but it provides the following bits of additional | 6 unittest module, but it provides the following bits of additional |
| 7 functionality: | 7 functionality: |
| 8 | 8 |
| 9 * Parallel test execution. | 9 * Parallel test execution. |
| 10 * Clean output in the style of the Ninja build tool. | 10 * Clean output in the style of the Ninja build tool. |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 - --debugger improvements: | 60 - --debugger improvements: |
| 61 | 61 |
| 62 - make it skip the initial breakpoint? | 62 - make it skip the initial breakpoint? |
| 63 | 63 |
| 64 - Support testing javascript, java, c++/gtest-style binaries? | 64 - Support testing javascript, java, c++/gtest-style binaries? |
| 65 - Support for test sharding in addition to parallel execution (so that | 65 - Support for test sharding in addition to parallel execution (so that |
| 66 run-webkit-tests can re-use as much of the code as possible)? | 66 run-webkit-tests can re-use as much of the code as possible)? |
| 67 - Support for non-unittest runtest invocation (for run-webkit-tests, | 67 - Support for non-unittest runtest invocation (for run-webkit-tests, |
| 68 other harnesses?) | 68 other harnesses?) |
| OLD | NEW |