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

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

cat << EOF

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

cat << EOF

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

cat << EOF

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

cat << EOF

##
# Interoperability with GCC
##
EOF
(cd interop && make $1 -j4)
}