blob: 1c7c455468d0704d1a95fe33fa3f749907a460c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
. ../../testenv.sh
for t in memmux04; do
synth_tb $t 2> $t.log
grep "found R" $t.log
done
for t in dpram1r dpram2r dpram2w; do
synth_tb $t 2> $t.log
done
echo "Test successful"
|