run-all-unit-tests   [plain text]


#!/bin/sh

# cd into test-cases directory
cd `echo "$0" | sed 's/run-all-unit-tests/test-cases/'`

echo ""
echo " * * * Running all unit tests for 32-bits * * *"

# make clean
../bin/make-recursive.pl clean > /dev/null

# build default architecture
../bin/make-recursive.pl | ../bin/result-filter.pl

# if G5, then also run all test cases built for ppc64
if [ `machine` = "ppc970" ] 
then
	echo ""
	echo " * * * Running all unit tests for 64-bits * * *"
	
	# make clean
	../bin/make-recursive.pl clean > /dev/null

	# build 64-bit architecture
	../bin/make-recursive.pl ARCH="-arch ppc64" | ../bin/result-filter.pl
fi

# if Intel, then also run all test cases under emulation
if [ `machine` = "pentium4" ] 
then
	echo ""
	echo " * * * Running all unit tests for emulated 32-bits * * *"
	
	# make clean
	../bin/make-recursive.pl clean > /dev/null

	# build 64-bit architecture
	../bin/make-recursive.pl ARCH="-arch ppc" | ../bin/result-filter.pl
fi