mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
a50a440b7c
The tests previously relied on the `short.py` and `FirstTest.subTestA` script being executed on a machine within a short time window (1 or 2 seconds). While this "seems to work" it can fail on resource constrained machines. We could bump the timeout a little bit (bumping it too much would mean the test would take a long time to execute) but it wouldn't really solve the problem of the test being prone to failures. This patch tries to remove this flakeyness by separating testing into two separate parts: 1. Testing if a test can hit a timeout. 2. Testing if a test can run to completion in the presence of a timeout. This way we can give (1.) a really short timeout (to make the test run as fast as possible) and (2.) a really long timeout. This means for (2.) we are no longer trying to rely on the "short" test executing within some short time window. Instead the window is now 3600 seconds which should be long enough even for a heavily resource constrained machine to execute the "short" test. Thanks to Julian Lettner for suggesting this approach. This superseeds my original approach in https://reviews.llvm.org/D88807. This patch also changes the command line override test to run the quick test rather than the slow one to make the test run faster. Differential Revision: https://reviews.llvm.org/D89020 |
||
---|---|---|
.. | ||
Inputs | ||
unit | ||
.coveragerc | ||
allow-retries.py | ||
boolean-parsing.py | ||
custom-result-category.py | ||
discovery.py | ||
googletest-discovery-failed.py | ||
googletest-format.py | ||
googletest-timeout.py | ||
googletest-upstream-format.py | ||
lit-opts.py | ||
lit.cfg | ||
lit.site.cfg.in | ||
max-failures.py | ||
max-time.py | ||
parallelism-groups.py | ||
progress-bar.py | ||
selecting.py | ||
shell-parsing.py | ||
show-result-codes.py | ||
show-used-features.py | ||
shtest-encoding.py | ||
shtest-env.py | ||
shtest-format-argv0.py | ||
shtest-format.py | ||
shtest-inject.py | ||
shtest-keyword-parse-errors.py | ||
shtest-not.py | ||
shtest-output-printing.py | ||
shtest-recursive-substitution.py | ||
shtest-run-at-line.py | ||
shtest-shell.py | ||
shtest-timeout.py | ||
test-data-micro.py | ||
test-data.py | ||
test-output-micro.py | ||
test-output.py | ||
unittest-adaptor.py | ||
unparsed-requirements.py | ||
usage.py | ||
xunit-output.py |