aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue2149/testsuite.sh
blob: 51ffcccc0c52703efb891f9df59cc8a9843c66dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

. ../../testenv.sh

synth --out=verilog -gCONFIG="10111011" rom_test.vhdl -e > syn_rom_test.v

if grep '"' syn_rom_test.v; then
  echo "failed"
  exit 1;
fi

echo "Test successful"