Skip to content

Commit

Permalink
Added CI job dedicated to MMU SV32 Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fatimasaleem committed Sep 9, 2023
1 parent abe6005 commit fc0b241
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,23 @@ csr_test:
- source verif/regress/dv-riscv-csr-access-test.sh
- python3 .gitlab-ci/scripts/report_simu.py verif/sim/logfile.log

mmu_sv32_test:
extends:
- .verif_test
- .template_job_short_ci
parallel:
matrix:
- DV_TARGET: [cv32a60x]
variables:
DV_SIMULATORS: "veri-testharness,spike"
DASHBOARD_JOB_TITLE: "mmu_sv32_test $DV_TARGET"
DASHBOARD_JOB_DESCRIPTION: "MMU SV32 regression suite"
DASHBOARD_SORT_INDEX: 0
DASHBOARD_JOB_CATEGORY: "Test suites"
script:
- source verif/regress/dv-riscv-mmu-sv32-test.sh
- python3 .gitlab-ci/scripts/report_simu.py verif/sim/logfile.log

pub_hwconfig:
extends:
- .verif_test
Expand Down
31 changes: 31 additions & 0 deletions verif/regress/dv-riscv-mmu-sv32-test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright 2021 Thales DIS design services SAS
#
# Licensed under the Solderpad Hardware Licence, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.0
# You may obtain a copy of the License at https://solderpad.org/licenses/
#
# Original Author: Jean-Roch COULON - Thales

# where are the tools
if ! [ -n "$RISCV" ]; then
echo "Error: RISCV variable undefined"
return
fi

# install the required tools
source verif/regress/install-cva6.sh
source verif/regress/install-riscv-dv.sh
source verif/regress/install-riscv-arch-test.sh

if ! [ -n "$DV_TARGET" ]; then
DV_TARGET=cv32a60x
fi

if ! [ -n "$DV_SIMULATORS" ]; then
DV_SIMULATORS=veri-testharness,spike
fi

cd verif/sim
python3 cva6.py --testlist=../tests/testlist_riscv-mmu-sv32-arch-test-$DV_TARGET.yaml --target $DV_TARGET --iss_yaml=cva6.yaml --iss=$DV_SIMULATORS $DV_OPTS --linker=../tests/riscv-arch-test/riscv-target/spike/link.ld
cd -

0 comments on commit fc0b241

Please sign in to comment.