Skip to content

Commit fefd893

Browse files
committed
Update end_to_end_test_utilities.py
1 parent d51a741 commit fefd893

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/scripts/end_to_end_test_utilities.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,8 @@ def run_trace_test(cwd: pathlib.Path, config: TestConfig, expected_improvement_p
204204
logging.error(f"Tracer with optimization command returned exit code {return_code}")
205205
return False
206206

207-
functions_traced = re.search(r"Traced (\d+) function calls successfully and replay test created at - (.*)$", stdout)
207+
functions_traced = re.search(r"Traced (\d+) function calls successfully", stdout)
208+
logging.info(functions_traced.groups() if functions_traced else "No functions traced")
208209
if not functions_traced:
209210
logging.error("Failed to find traced functions in output")
210211
return False

0 commit comments

Comments
 (0)