Skip to content

Commit 83346a4

Browse files
committed
[lit] NFC: Document missing result codes
These result codes already exist, but they were not documented. I assume this is an oversight when adding these result codes.
1 parent 49f7513 commit 83346a4

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

llvm/docs/CommandGuide/lit.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,12 +251,17 @@ convenient and flexible support for out-of-tree builds.
251251
TEST STATUS RESULTS
252252
-------------------
253253

254-
Each test ultimately produces one of the following six results:
254+
Each test ultimately produces one of the following eight results:
255255

256256
**PASS**
257257

258258
The test succeeded.
259259

260+
**FLAKYPASS**
261+
262+
The test succeeded after being re-run more than once. This only applies to
263+
tests containing an ``ALLOW_RETRIES:`` annotation.
264+
260265
**XFAIL**
261266

262267
The test failed, but that is expected. This is used for test formats which allow
@@ -283,6 +288,11 @@ Each test ultimately produces one of the following six results:
283288
The test is not supported in this environment. This is used by test formats
284289
which can report unsupported tests.
285290

291+
**TIMEOUT**
292+
293+
The test was run, but it timed out before it was able to complete. This is
294+
considered a failure.
295+
286296
Depending on the test format tests may produce additional information about
287297
their status (generally only for failures). See the :ref:`output-options`
288298
section for more information.

0 commit comments

Comments
 (0)