aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/test-icestick/testsuite.sh
blob: 889f5b3deb04f4961627ded6daef4b0fd88ba2c8 (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
#!/bin/sh

. ../testenv.sh

src=../../icestick

analyze $src/leds.vhdl

files="fixed1.vhdl
 fixed1.vhdl
 blink.vhdl
 multi1.vhdl
 multi2.vhdl
 spin1.vhdl
 rotate1.vhdl
 rotate2.vhdl
 rotate3.vhdl
 rotate4.vhdl
"
# spin2.vhdl

for f in $files; do
 analyze $src/$f
 synth leds
done

clean