Skip to content

Commit

Permalink
test: Use separate test list for dma_mchan configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Jul 16, 2024
1 parent ddedc7d commit b8fbb07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ snitch-cluster-omega-vsim:
snitch-cluster-mchan-vsim:
script:
- cd target/snitch_cluster
- make CFG_OVERRIDE=cfg/dma_mchan.hjson sw
- make CFG_OVERRIDE=cfg/dma_mchan.hjson TEST_LIST=dma_mchan.yaml sw
- make bin/snitch_cluster.vsim
- ./util/run.py sw/dma_mchan.yaml --simulator vsim -j --run-dir runs/vsim

Expand Down
3 changes: 2 additions & 1 deletion target/snitch_cluster/sw/tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ RISCV_LDFLAGS += -lsnRuntime
# Outputs #
###########

APPS = $(shell $(MK_DIR)/../../../../util/sim/list_apps.py --in-dir tests/ ../run.yaml)
TEST_LIST ?= run.yaml
APPS = $(shell $(MK_DIR)/../../../../util/sim/list_apps.py --in-dir tests/ $(MK_DIR)/../$(TEST_LIST))
ELFS = $(abspath $(addprefix $(BUILDDIR)/,$(addsuffix .elf,$(APPS))))
DEPS = $(abspath $(addprefix $(BUILDDIR)/,$(addsuffix .d,$(APPS))))
DUMPS = $(abspath $(addprefix $(BUILDDIR)/,$(addsuffix .dump,$(APPS))))
Expand Down

0 comments on commit b8fbb07

Please sign in to comment.