Skip to content

Commit

Permalink
[xharness] Xcode 7.3 ships symbolicatecrash in a new place, so look t…
Browse files Browse the repository at this point in the history
…here as well. (xamarin#134)
  • Loading branch information
rolfbjarne committed Jun 6, 2016
1 parent f0319ac commit aaae585
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/xharness/AppRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ class DeviceData : IData {
string SymbolicateCrashReport (string report)
{
var symbolicatecrash = Path.Combine (Harness.XcodeRoot, "Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/symbolicatecrash");
if (!File.Exists (symbolicatecrash))
symbolicatecrash = Path.Combine (Harness.XcodeRoot, "Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash");

if (!File.Exists (symbolicatecrash)) {
Harness.Log ("Can't symbolicate {0} because the symbolicatecrash script {1} does not exist", report, symbolicatecrash);
return report;
Expand Down

0 comments on commit aaae585

Please sign in to comment.