1#!/bin/sh
2
3# need to be root to build test suite
4sudo ./build-iPhoneOS-unit-tests
5
6# transfer to device
7echo " * * * Transfering to device * * *"
8rsync -a /tmp/unpack-and-run-all-tests /tmp/dyld-testing.cpgz rsync://root@localhost:10873/root/tmp
9
10
11# running on device
12echo " * * * Running on device * * *"
13/Developer/Platforms/iPhoneOS.platform/usr/local/bin/PurpleExec /tmp/unpack-and-run-all-tests
14
15