Michael Jerris 4ad763132d merge latest darcs changes from sofia-sip.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4963 d0543943-73ff-0310-b7d9-9358b9ac24b2
2007-04-17 13:43:45 +00:00

25 lines
402 B
Bash

#! /bin/sh
rc=0
run=no
export SU_PORT=CoreFoundation
if $VALGRIND ./test_su_osx ; then
echo PASS: multithread test_su_osx with $SU_PORT
else
echo FAIL: multithread test_su_osx with $SU_PORT failed
rc=1
fi
if $VALGRIND ./test_su_osx -s ; then
echo PASS: singlethread test_su_osx with $SU_PORT
else
echo FAIL: singlethread test_su_osx with $SU_PORT failed
rc=1
fi
exit $rc