blob: 6d1d90ada4f85a4a17c6f5ddd5e3e7eb9a7a5e59 (
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>&1 | tee $f.log
grep "found RAM" $f.log
done
#synth_tb ram41
clean
echo "Test successful"
|