aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/testenv.sh
blob: 0046d49c2e490d1d069a476740ea5cf5c6d9b10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Testsuite environment

if [ x"$topdir" = x"" ]; then
  echo "topdir must be defined"
  exit 1
fi

. $topdir/../utils.sh
abs_topdir=`pwd`/$topdir

set -e

if [ x"$GHDL" = x ]; then
    GHDL=ghdl
fi

if [ x"$YOSYS" = x ]; then
    # Need to use abs_topdir because with sby yosys is executed in a subdir.
    YOSYS="yosys -m $abs_topdir/../ghdl.so"
fi

if [ x"$SYMBIYOSYS" = x ]; then
    SYMBIYOSYS="sby"
fi

cmd ()
{
    echo $@"
    "$@"
}

run_yosys ()
{
    cmd $YOSYS "$@"
}

run_symbiyosys ()
{
    cmd $SYMBIYOSYS --yosys "$YOSYS" "$@"
}

analyze ()
{
    printf "${ANSI_BLUE}Analyze $@ $ANSI_NOCOLOR\n"
    cmd "$GHDL" -a $GHDL_STD_FLAGS $GHDL_FLAGS $@
}

synth_import ()
{
    gstart "Synthesize $*"
    run_yosys -q -p "ghdl $*"
    status=$?
    gend
    return $status
}

synth_ice40 ()
{
    gstart "synth" "Synthesize $*"
    run_yosys -q -p "ghdl $*; synth_ice40 -blif out.blif"
    gend
}

synth ()
{
    synth_ice40 "$*"
}

formal ()
{
    gstart "Verify $@"
    run_symbiyosys -f -d work $@.sby
    gend
}

clean ()
{
    "$GHDL" --remove $GHDL_STD_FLAGS
    rm -f out.blif
}