Skip to content

Commit 2c6d578

Browse files
authored
Replace gtkwave with libfst submodule (#5)
1 parent e18b95a commit 2c6d578

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.gitmodules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
[submodule "submodules/example-systemverilog"]
2626
path = submodules/example-systemverilog
2727
url = https://github.com/verilator/example-systemverilog.git
28-
[submodule "submodules/gtkwave"]
29-
path = submodules/gtkwave
30-
url = https://github.com/gtkwave/gtkwave.git
3128
[submodule "submodules/sv-bugpoint"]
3229
path = submodules/sv-bugpoint
3330
url = https://github.com/antmicro/sv-bugpoint
@@ -37,3 +34,6 @@
3734
[submodule "submodules/wbuart32"]
3835
path = submodules/wbuart32
3936
url = https://github.com/ZipCPU/wbuart32.git
37+
[submodule "submodules/libfst"]
38+
path = submodules/libfst
39+
url = https://github.com/gtkwave/libfst.git

submodules/gtkwave

Lines changed: 0 additions & 1 deletion
This file was deleted.

submodules/libfst

Submodule libfst added at 93e45e6

t/t_gtkwave_diff.py renamed to t/t_libfst_diff.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,14 @@ def check(a, b, basename):
2727
test.skip("Skipping due to no VERILATOR_TEST_UPSTREAM")
2828

2929
print(os.getcwd)
30-
g = "submodules/gtkwave"
30+
g = "submodules/libfst"
3131
v = os.environ['VERILATOR_ROOT']
3232

33-
check(g + "/src/helpers", v + "/include/gtkwave", "wavealloca.h")
34-
check(g + "/lib/libfst", v + "/include/gtkwave", "fastlz.h")
35-
check(g + "/lib/libfst", v + "/include/gtkwave", "fastlz.c")
36-
check(g + "/lib/libfst", v + "/include/gtkwave", "fstapi.h")
37-
check(g + "/lib/libfst", v + "/include/gtkwave", "fstapi.c")
38-
check(g + "/lib/libfst", v + "/include/gtkwave", "lz4.h")
39-
check(g + "/lib/libfst", v + "/include/gtkwave", "lz4.c")
33+
check(g + "/src", v + "/include/gtkwave", "fastlz.h")
34+
check(g + "/src", v + "/include/gtkwave", "fastlz.c")
35+
check(g + "/src", v + "/include/gtkwave", "fstapi.h")
36+
check(g + "/src", v + "/include/gtkwave", "fstapi.c")
37+
check(g + "/src", v + "/include/gtkwave", "lz4.h")
38+
check(g + "/src", v + "/include/gtkwave", "lz4.c")
4039

4140
test.passes()

0 commit comments

Comments
 (0)