Skip to content

Commit 6804a90

Browse files
authored
[NFC] Ignore MemoryPacking warning in ClusterFuzz test (#7195)
Noticed by chance in #7193
1 parent 47195f1 commit 6804a90

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/unit/test_cluster_fuzz.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ def test_run_py(self):
106106
SAFE_WARNINGS = [
107107
# When we randomly pick no passes to run, this is shown.
108108
'warning: no passes specified, not doing any work',
109+
# MemoryPacking warns on some things.
110+
'warning: active memory segments have overlap, which prevents some optimizations.',
109111
]
110112
stderr = proc.stderr
111113
for safe in SAFE_WARNINGS:

0 commit comments

Comments
 (0)