1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#! /bin/sh . ../../testenv.sh # Normal flow analyze a.vhdl analyze b.vhdl clean # When analyzing a unit, dependencies must have been analyzed $GHDL -i a.vhdl analyze_failure b.vhdl clean # Original test $GHDL -i b.vhdl c.vhdl a.vhdl $GHDL -s c.vhdl clean echo "Test successful"