Skip to content

Commit c51f1d1

Browse files
committed
Filtering Vulkan-related errors in Godot in tests no longer needed
(see godotengine/godot#66883)
1 parent cd11af4 commit c51f1d1

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/run.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,6 @@ def run_test(
166166
if res.returncode != 0:
167167
raise SystemExit(f"{RED}{test_name}: Non-zero return code: {res.returncode}{NO_COLOR}")
168168
for line in total_output.splitlines():
169-
# See https://github.com/godotengine/godot/issues/66722
170-
if b"Message Id Number: 0 | Message Id Name: Loader Message" in line:
171-
continue
172-
if b"lavapipe is not a conformant vulkan implementation, testing use only." in line:
173-
continue
174169
lower_line = line.lower()
175170
if b"error" in lower_line or b"warning" in lower_line:
176171
raise SystemExit(

0 commit comments

Comments
 (0)