Skip to content

Commit

Permalink
print failure when no url found
Browse files Browse the repository at this point in the history
  • Loading branch information
kbhargava-jump committed Nov 6, 2024
1 parent 3cadfac commit 6515461
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test_suite/test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,9 @@ def debug_mismatches(
custom_url = result.stdout[
start_index + len("REPRO_CUSTOM_URL=") + 1 : end_index - 1
].strip()
if custom_url == "":
print(f"Failed to get custom URL from {url}")
continue
custom_data_urls.append(custom_url)

ld_preload = os.environ.pop("LD_PRELOAD", None)
Expand Down

0 comments on commit 6515461

Please sign in to comment.