X Tutup
Skip to content

Commit b446092

Browse files
authored
Fix intermittent test_ci_fuzz_stdlib failures (GH-145641)
1 parent 0156133 commit b446092

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Lib/test/test_tools/test_compute_changes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ def test_ci_fuzz_stdlib(self):
5454
f = p / "file"
5555
elif p.is_file():
5656
f = p
57+
else:
58+
self.fail(f"LIBRARY_FUZZER_PATHS contains an invalid entry: {p!r}")
5759
result = process_changed_files({f})
5860
self.assertTrue(result.run_ci_fuzz_stdlib)
5961
self.assertTrue(is_fuzzable_library_file(f))

Tools/build/compute-changes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
# tarfile
9191
Path("Lib/tarfile.py"),
9292
# tomllib
93-
Path("Modules/tomllib/"),
93+
Path("Lib/tomllib/"),
9494
# xml
9595
Path("Lib/xml/"),
9696
Path("Lib/_markupbase.py"),

0 commit comments

Comments
 (0)
X Tutup