summaryrefslogtreecommitdiff
path: root/scripts/update_lit_checks.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update_lit_checks.py')
-rwxr-xr-xscripts/update_lit_checks.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/update_lit_checks.py b/scripts/update_lit_checks.py
index b93059427..1e7274c51 100755
--- a/scripts/update_lit_checks.py
+++ b/scripts/update_lit_checks.py
@@ -155,6 +155,12 @@ def parse_output_fuzz_exec(text):
# in the input.
name = f'"{func.group("name")}"'
items.append((('func', name), [line]))
+ elif line.startswith('[host limit'):
+ # Skip mentions of host limits that we hit. This can happen even
+ # before we reach the execution of a function (if it happens during
+ # instantiation of the module), in which case |items| may be empty,
+ # and we'd error on the code below.
+ pass
elif line:
assert items, 'unexpected non-invocation line'
items[-1][1].append(line)