blob: 02c617f6cf607fe992bc3dd931d819adabbaa848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
GHDL_STD_FLAGS=-fpsl
analyze tb.vhdl
elab_simulate foo_tb >sim_log.txt
run "grep -q 'falling_a0 custom report' sim_log.txt"
run_failure "grep -q 'sequence covered' sim_log.txt"
rm -f sim_log.txt
clean
echo "Test successful"
|