blob: 1604b4bfb6d31d65dc81bd4192f8d12118821e6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
. ../../testenv.sh
for f in tdp_ram tdp_ram2 ram3 ram4 ram5; do
synth_tb $f 2> $f.log
grep "found RAM" $f.log
done
#synth_tb ram41
clean
echo "Test successful"
|