mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-20 03:47:15 -04:00
fix ibex regression script (#165)
This commit is contained in:
parent
b7ef64b62d
commit
c96ece0429
1 changed files with 3 additions and 3 deletions
|
@ -68,10 +68,10 @@ fi
|
|||
|
||||
OUT="$RUN_DIR/rtl_sim"
|
||||
CWD=`pwd`
|
||||
OPTS=""
|
||||
|
||||
# Run each test
|
||||
while read asm_test; do
|
||||
OPTS=""
|
||||
SRC=$(echo "$asm_test" | sed 's/^.*\///g' | sed 's/\.S>*$//g')
|
||||
BINFILE="$asm_test.bin"
|
||||
mkdir -p $OUT/$SRC
|
||||
|
@ -89,10 +89,10 @@ while read asm_test; do
|
|||
-assert nopostproc \
|
||||
-cm_name test_${SEED}"
|
||||
fi
|
||||
if [[ $BINFILE =~ ebreak ]]; then
|
||||
if [[ "$BINFILE" =~ "ebreak" ]]; then
|
||||
OPTS="+enable_debug_seq=1"
|
||||
fi
|
||||
if [[ $BINFILE =~ wfi ]]; then
|
||||
if [[ "$BINFILE" =~ "wfi" ]]; then
|
||||
OPTS="+enable_irq_seq=1"
|
||||
fi
|
||||
CMD="$OUT/vcs_simv +UVM_TESTNAME=core_ibex_base_test \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue