mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-26 05:13:07 +00:00
14 lines
708 B
Diff
14 lines
708 B
Diff
Index: llvm-toolchain-snapshot_17~++20230517015648+0b6264738f3d/llvm/utils/lit/lit/Test.py
|
|
===================================================================
|
|
--- llvm-toolchain-snapshot_17~++20230517015648+0b6264738f3d.orig/llvm/utils/lit/lit/Test.py
|
|
+++ llvm-toolchain-snapshot_17~++20230517015648+0b6264738f3d/llvm/utils/lit/lit/Test.py
|
|
@@ -52,7 +52,7 @@ XFAIL = ResultCode("XFAIL", "Expectedly
|
|
UNRESOLVED = ResultCode("UNRESOLVED", "Unresolved", True)
|
|
TIMEOUT = ResultCode("TIMEOUT", "Timed Out", True)
|
|
FAIL = ResultCode("FAIL", "Failed", True)
|
|
-XPASS = ResultCode("XPASS", "Unexpectedly Passed", True)
|
|
+XPASS = ResultCode('XPASS', 'Unexpectedly Passed', False)
|
|
|
|
|
|
# Test metric values.
|