我正在为iOS开发一个应用程序,而我正在使用相当多的多线程。
因为有一些令人讨厌的竞争条件有时会导致崩溃。它很少发生,为了产生崩溃我需要手动启动我的项目数百次。
我的问题是,有没有办法使用Xcode 6.3和Applescript自动启动?
我已经看过XCode 4.0的脚本,我尝试自己写一个:
repeat 100 times
tell application "Xcode"
open "<PathToProject>/TestApplication.xcodeproj"
tell project "TestApplication"
clean
build
try
debug
end try
end tell
end tell
end repeat
据我所知,它会运行clean
和build
命令,但它不会执行debug
或launch
个关键字。