blob: 2ccc0ce9cf9700237917b6e4a0cc6170f71f2554 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
. ../../testenv.sh
analyze repro.vhdl
elab_simulate repro
clean
analyze --work=unisim muxcy.vhdl
analyze --work=poc simulation.vhdl
analyze --work=poc arith_prefix_and.vhdl
analyze --work=test arith_prefix_and_tb.vhdl
elab_simulate --work=test arith_prefix_and_tb
clean unisim
clean poc
clean test
echo "Test successful"
|