mirror of
https://github.com/darlinghq/darling-dyld.git
synced 2024-11-26 22:00:26 +00:00
01ca8e46cb
dyld-733.6
15 lines
401 B
Bash
Executable File
15 lines
401 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# need to be root to build test suite
|
|
sudo ./build-iPhoneOS-unit-tests
|
|
|
|
# transfer to device
|
|
echo " * * * Transfering to device * * *"
|
|
rsync -a /tmp/unpack-and-run-all-tests /tmp/dyld-testing.cpgz rsync://root@localhost:10873/root/tmp
|
|
|
|
|
|
# running on device
|
|
echo " * * * Running on device * * *"
|
|
/Developer/Platforms/iPhoneOS.platform/usr/local/bin/PurpleExec /tmp/unpack-and-run-all-tests
|
|
|