Skip to content

Commit 4db3c3f

Browse files
packet_filter: Fix pathing
Signed-off-by: Istvan-Zsolt Szekely <istvan.szekely@analog.com>
1 parent e32d8e8 commit 4db3c3f

File tree

3 files changed

+36
-36
lines changed

3 files changed

+36
-36
lines changed

testbenches/ip/packet_filter/Makefile

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@
55
####################################################################################
66

77
# All test-bench dependencies except test programs
8-
SV_DEPS += ../common/sv/utils.svh
9-
SV_DEPS += ../common/sv/logger_pkg.sv
10-
SV_DEPS += ../common/sv/reg_accessor.sv
11-
SV_DEPS += ../common/sv/m_axis_sequencer.sv
12-
SV_DEPS += ../common/sv/s_axis_sequencer.sv
13-
SV_DEPS += ../common/sv/m_axi_sequencer.sv
14-
SV_DEPS += ../common/sv/s_axi_sequencer.sv
15-
SV_DEPS += ../common/sv/test_harness_env.sv
16-
SV_DEPS += ../common/sv/adi_peripheral_pkg.sv
17-
SV_DEPS += ../common/sv/adi_regmap_pkg.sv
18-
SV_DEPS += ../common/sv/mailbox.sv
19-
SV_DEPS += ../common/sv/x_monitor.sv
20-
SV_DEPS += ../common/sv/scoreboard.sv
21-
SV_DEPS += ../common/sv/watchdog.sv
22-
SV_DEPS += ../common/sv/filter.sv
8+
SV_DEPS += ../../../library/utilities/utils.svh
9+
SV_DEPS += ../../../library/utilities/logger_pkg.sv
10+
SV_DEPS += ../../../library/regmaps/reg_accessor.sv
11+
SV_DEPS += ../../../library/vip/amd/m_axis_sequencer.sv
12+
SV_DEPS += ../../../library/vip/amd/s_axis_sequencer.sv
13+
SV_DEPS += ../../../library/vip/amd/m_axi_sequencer.sv
14+
SV_DEPS += ../../../library/vip/amd/s_axi_sequencer.sv
15+
SV_DEPS += ../../../library/utilities/test_harness_env.sv
16+
SV_DEPS += ../../../library/regmaps/adi_peripheral_pkg.sv
17+
SV_DEPS += ../../../library/regmaps/adi_regmap_pkg.sv
18+
SV_DEPS += ../../../library/drivers/common/mailbox.sv
19+
SV_DEPS += ../../../library/drivers/common/x_monitor.sv
20+
SV_DEPS += ../../../library/drivers/common/scoreboard.sv
21+
SV_DEPS += ../../../library/drivers/common/filter.sv
22+
SV_DEPS += ../../../library/drivers/common/watchdog.sv
2323
SV_DEPS += environment.sv
2424
SV_DEPS += system_tb.sv
2525

2626
ENV_DEPS += system_project.tcl
2727
ENV_DEPS += system_bd.tcl
28-
ENV_DEPS +=../scripts/adi_sim.tcl
29-
ENV_DEPS +=../scripts/run_sim.tcl
28+
ENV_DEPS += ../../../scripts/adi_sim.tcl
29+
ENV_DEPS += ../../../scripts/run_sim.tcl
3030

3131
# default test program
3232
TP := test_program
@@ -40,7 +40,7 @@ CFG_FILES := $(notdir $(wildcard cfgs/cfg*.tcl))
4040
# Format is: <configuration>:<test name>
4141
TESTS := $(foreach cfg, $(basename $(CFG_FILES)), $(addprefix $(cfg):, $(TP)))
4242

43-
include ../scripts/project-sim.mk
43+
include ../../../scripts/project-sim.mk
4444

4545
# usage :
4646
#

testbenches/ip/packet_filter/system_bd.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535

3636
global ad_hdl_dir
3737

38-
source ../../scripts/adi_env.tcl
38+
source ../../../../scripts/adi_env.tcl
3939

4040
global ad_project_params

testbenches/ip/packet_filter/system_project.tcl

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
source ../scripts/adi_sim.tcl
2-
source ../../scripts/adi_env.tcl
1+
source ../../../scripts/adi_sim.tcl
2+
source ../../../../scripts/adi_env.tcl
33
source $ad_hdl_dir/projects/scripts/adi_board.tcl
44

55
if {$argc < 1} {
@@ -20,21 +20,21 @@ adi_sim_project_xilinx $project_name "xcvu9p-flga2104-2L-e"
2020

2121
# Add test files to the project
2222
adi_sim_project_files [list \
23-
"../common/sv/utils.svh" \
24-
"../common/sv/logger_pkg.sv" \
25-
"../common/sv/reg_accessor.sv" \
26-
"../common/sv/m_axis_sequencer.sv" \
27-
"../common/sv/s_axis_sequencer.sv" \
28-
"../common/sv/m_axi_sequencer.sv" \
29-
"../common/sv/s_axi_sequencer.sv" \
30-
"../common/sv/adi_peripheral_pkg.sv" \
31-
"../common/sv/adi_regmap_pkg.sv" \
32-
"../common/sv/test_harness_env.sv" \
33-
"../common/sv/mailbox.sv" \
34-
"../common/sv/x_monitor.sv" \
35-
"../common/sv/scoreboard.sv" \
36-
"../common/sv/watchdog.sv" \
37-
"../common/sv/filter.sv" \
23+
"../../../library/utilities/utils.svh" \
24+
"../../../library/utilities/logger_pkg.sv" \
25+
"../../../library/regmaps/reg_accessor.sv" \
26+
"../../../library/vip/amd/m_axis_sequencer.sv" \
27+
"../../../library/vip/amd/s_axis_sequencer.sv" \
28+
"../../../library/vip/amd/m_axi_sequencer.sv" \
29+
"../../../library/vip/amd/s_axi_sequencer.sv" \
30+
"../../../library/regmaps/adi_peripheral_pkg.sv" \
31+
"../../../library/regmaps/adi_regmap_pkg.sv" \
32+
"../../../library/utilities/test_harness_env.sv" \
33+
"../../../library/drivers/common/mailbox.sv" \
34+
"../../../library/drivers/common/x_monitor.sv" \
35+
"../../../library/drivers/common/scoreboard.sv" \
36+
"../../../library/drivers/common/filter.sv" \
37+
"../../../library/drivers/common/watchdog.sv" \
3838
"environment.sv" \
3939
"tests/test_program.sv" \
4040
"system_tb.sv" \

0 commit comments

Comments
 (0)