Skip to content

Commit 3a2a427

Browse files
committed
Fix astsee tests
1 parent 44a3d05 commit 3a2a427

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

t/t_dump_json_astsee.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
test.top_filename = os.environ["VERILATOR_ROOT"] + "/test_regress/t/t_dump.v"
1414

1515
out = test.run_capture("astsee_verilator -h 2>&1", check=False)
16-
if 'not found' in out:
16+
if 'usage:' not in out:
1717
test.skip("No astsee installed\n")
1818

1919
test.lint(v_flags=["--lint-only --dump-tree-json"])

t/t_gdb_jtree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
test.top_filename = "t/t_dump.v"
1414

1515
out = test.run_capture("astsee_verilator -h 2>&1", check=False)
16-
if 'not found' in out:
16+
if 'usage:' not in out:
1717
test.skip("No astsee installed\n")
1818

1919
test.setenv(

0 commit comments

Comments
 (0)