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

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

cat << EOF

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

cat << EOF

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

cat << EOF

##
# Instruction unit tests
##
EOF
(cd instr && make $1 -j8)
}