aboutsummaryrefslogtreecommitdiffstats
path: root/test/kvx/do_test.sh
blob: 5cc23dee7459e7fd1260cf341a0854e9abc5c80f (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
do_test () {
cat << EOF

##
# PRNG tests
##
EOF
(cd prng && make $1 -j$2)

cat << EOF

##
# Matrix Multiplication tests
##
EOF
(cd mmult && make $1 -j$2)

cat << EOF

##
# List sort tests
##
EOF
(cd sort && make $1 -j$2)

cat << EOF

##
# Instruction unit tests
##
EOF
(cd instr && make $1 -j$2)

cat << EOF

##
# Interoperability with GCC
##
EOF
(cd interop && make $1 -j$2)

cat << EOF

##
# printf wrapper test
##
(cd lib && make $1 -j$2)
EOF

}