Title: [179179] trunk/Tools
Revision
179179
Author
[email protected]
Date
2015-01-27 07:16:36 -0800 (Tue, 27 Jan 2015)

Log Message

Teach run-webkit-app --simulator how to install custom built app
https://bugs.webkit.org/show_bug.cgi?id=140691

Fix inadvertent omission of directory test flag in _expression_ to check for the
existence of the iOS simulator device-specific directory for user installed apps.

* Scripts/webkitdirs.pm:
(hasUserInstalledAppInSimulatorDevice):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (179178 => 179179)


--- trunk/Tools/ChangeLog	2015-01-27 14:12:52 UTC (rev 179178)
+++ trunk/Tools/ChangeLog	2015-01-27 15:16:36 UTC (rev 179179)
@@ -1,3 +1,14 @@
+2015-01-27  Daniel Bates  <[email protected]>
+
+        Teach run-webkit-app --simulator how to install custom built app
+        https://bugs.webkit.org/show_bug.cgi?id=140691
+
+        Fix inadvertent omission of directory test flag in _expression_ to check for the
+        existence of the iOS simulator device-specific directory for user installed apps.
+
+        * Scripts/webkitdirs.pm:
+        (hasUserInstalledAppInSimulatorDevice):
+
 2015-01-26  Brent Fulgham  <[email protected]>
 
         [Win] ASSERTION FAILED !m_ptr under AccessibilityController::winAddNotificationListener

Modified: trunk/Tools/Scripts/webkitdirs.pm (179178 => 179179)


--- trunk/Tools/Scripts/webkitdirs.pm	2015-01-27 14:12:52 UTC (rev 179178)
+++ trunk/Tools/Scripts/webkitdirs.pm	2015-01-27 15:16:36 UTC (rev 179179)
@@ -2167,7 +2167,7 @@
 {
     my ($appIdentifier, $simulatedDeviceUDID) = @_;
     my $userInstalledAppPath = File::Spec->catfile($ENV{HOME}, "Library", "Developer", "CoreSimulator", "Devices", $simulatedDeviceUDID, "data", "Containers", "Bundle", "Application");
-    if (!$userInstalledAppPath) {
+    if (!-d $userInstalledAppPath) {
         return 0; # No user installed apps.
     }
     local @::userInstalledAppBundles;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to