]> git.saurik.com Git - apple/dyld.git/blame - unit-tests/run-all-unit-tests
dyld-43.tar.gz
[apple/dyld.git] / unit-tests / run-all-unit-tests
CommitLineData
0959b6d4
A
1#!/bin/sh
2
3# cd into test-cases directory
4cd `echo "$0" | sed 's/run-all-unit-tests/test-cases/'`
5
6echo ""
7echo " * * * Running all unit tests for 32-bits * * *"
8
9# make clean
10../bin/make-recursive.pl clean > /dev/null
11
12# build default architecture
13../bin/make-recursive.pl | ../bin/result-filter.pl
14
15# if G5, then also run all test cases built for ppc64
16if [ `machine` = "ppc970" ]
17then
18 echo ""
19 echo " * * * Running all unit tests for 64-bits * * *"
20
21 # make clean
22 ../bin/make-recursive.pl clean > /dev/null
23
24 # build 64-bit architecture
25 ../bin/make-recursive.pl ARCH="-arch ppc64" | ../bin/result-filter.pl
26fi
27
28