-
Notifications
You must be signed in to change notification settings - Fork 67
Xcode 6 issue #76
Comments
Downloading Xcode 6.0.1 is taking for...ev...er... :) Thanks for the bug report. I'll see what I can do. |
Having the same problem here as well. |
I'm NOT a ruby expert which is why I'm not just submitting a pull request, but this seems like this would be nice??? def xcode_version
Gem::Version.new `xcodebuild -version 2>&1`.split("\n").first.gsub(/Xcode /, "")
end
def path_to_automation_template
if xcode_version >= Gem::Version.new("6")
"Automation"
else
`xcrun instruments -s 2>&1 | grep Automation.tracetemplate`.split("\n").find do |path|
path = path.gsub(/^\s*"|",\s*$/, "")
File.exists?(path)
end
end
end |
Having the same problem. |
@vincentjames501 @russelCrowe @dereknex please install the version of bwoken I just pushed: Using Bundler, set the line in your
If you just installed bwoken from the command line, do the following:
Let me know if this fixes the problem. (For reference, the fix is at 227d405) |
Thanks. Unfortunately, it's still failing to run the test. It's not throwing any errors this time though. Just fails to launch the simulator. It compiles fine and tries to run the example.js and main.js but nothing happens. Fails silently. Appreciate your help. |
@listrophy I got the same problem as @russelCrowe |
+1 |
I did manage to avoid this problem and the fix can found at #79. Apparently, |
I've merged #79 and released version 2.1.0.rc.2. Please test with the new version per my instructions above: #76 (comment) |
@listrophy |
$bwoken --version when running bwoken i recieve 2014-10-23 09:32:14.346 instruments[6522:25752] *** -[__NSCFConstantString stringByAppendingPathExtension:]: cannot append extension 'tracetemplate' to path '' Any ideas how to fix that ? |
I stumbled across this searching for something else. This is how we find the Automation template in run-loop (Calabash iOS). Works on Xcode > 5.1.1 and is updated for Xcode 6.3 Beta |
When this bug will be fixed? It still exists on
|
At least for my two machines, there is no longer a full path to Automation.tracetemplate. Running
xcrun instruments -s
I'm left with the following templates:I haven't done much digging into this, but it runs fine for me if I adjust the
[-t template]
option via a slight code tweak like so:We're back in business. I'm not sure if it's safe to assume this as a default, however. Without this, you'll get the following error message:
The text was updated successfully, but these errors were encountered: