aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/mem02/testsuite.sh
blob: 8f6c0691d1cb949a46a3cd23e324b0db65fd0cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh

. ../../testenv.sh

for t in dpram1 dpram3 dpram4 dpram5 dpram7 dpram8; do
    synth_tb $t 2> $t.log
    grep "found R" $t.log
done

# Designs that doesn't create a RAM/ROM
for t in ram3 ram4 ram6; do
    synth_tb $t 2> $t.log
done

synth ram8.vhdl -e > syn_ram8.vhdl
synth ram9.vhdl -e > syn_ram9.vhdl

echo "Test successful"