]>
Commit | Line | Data |
---|---|---|
d696c285 A |
1 | #!/bin/sh |
2 | ||
3 | # cd into test-cases directory | |
4 | cd `echo "$0" | sed 's/run-all-unit-tests/test-cases/'` | |
5 | ||
69a49097 | 6 | all_archs="ppc ppc64 i386 x86_64" |
d696c285 A |
7 | |
8 | for arch in $all_archs | |
9 | do | |
10 | echo "" | |
11 | echo " * * * Running all unit tests for architecture $arch * * *" | |
12 | ||
13 | # build architecture | |
14 | ../bin/make-recursive.pl ARCH=$arch VALID_ARCHS="$all_archs" | ../bin/result-filter.pl | |
15 | ||
16 | # clean up so svn is happy | |
17 | ../bin/make-recursive.pl ARCH=$arch clean > /dev/null | |
18 | ||
19 | echo "" | |
20 | done | |
21 | ||
22 | ||
23 |