blob: b8cee31e0b6d5d7cf7a07a1e32ade68d30298157 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze tf.vhdl
elab_simulate tf
analyze add_carry_ghdl_testbench.vhdl
elab_simulate add_carry_ghdl_testbench > add_carry_testbench.out
diff_nocr add_carry_testbench.ref add_carry_testbench.out
clean
echo "Test successful"
|