We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
scripts/replay.py
1 parent 1886408 commit 0bfdef3Copy full SHA for 0bfdef3
scripts/json_transformations.py
@@ -37,7 +37,7 @@ def traces_to_test(inout_file, project_root=None, input_only=False):
37
in_re = re.compile(b' *([^{]*) ({.*})')
38
for line in f.readlines():
39
m = in_re.match(line)
40
- if m:
+ if m and m.group(1) in (b"[ALS.IN]", b"[ALS.OUT]"):
41
is_input = m.group(1) == b"[ALS.IN]"
42
cleaned = m.group(2)
43
if project_root:
0 commit comments