Title: [229710] trunk/Tools
Revision
229710
Author
dba...@webkit.org
Date
2018-03-19 13:43:36 -0700 (Mon, 19 Mar 2018)

Log Message

run-webkit-app -g does not work
https://bugs.webkit.org/show_bug.cgi?id=183699

Reviewed by Lucas Forschler.

Check for the optional command line argument -g/--guard-malloc before taking the
first argument passed to be the path to the app to run.

* Scripts/run-webkit-app:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (229709 => 229710)


--- trunk/Tools/ChangeLog	2018-03-19 20:22:30 UTC (rev 229709)
+++ trunk/Tools/ChangeLog	2018-03-19 20:43:36 UTC (rev 229710)
@@ -1,3 +1,15 @@
+2018-03-19  Daniel Bates  <daba...@apple.com>
+
+        run-webkit-app -g does not work
+        https://bugs.webkit.org/show_bug.cgi?id=183699
+
+        Reviewed by Lucas Forschler.
+
+        Check for the optional command line argument -g/--guard-malloc before taking the
+        first argument passed to be the path to the app to run.
+
+        * Scripts/run-webkit-app:
+
 2018-03-18  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r229689.

Modified: trunk/Tools/Scripts/run-webkit-app (229709 => 229710)


--- trunk/Tools/Scripts/run-webkit-app	2018-03-19 20:22:30 UTC (rev 229709)
+++ trunk/Tools/Scripts/run-webkit-app	2018-03-19 20:43:36 UTC (rev 229710)
@@ -37,6 +37,7 @@
 printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
 
 setConfiguration();
+setUpGuardMallocIfNeeded();
 
 die "Did not specify an application to open (e.g. run-webkit-app AppName).\n" unless length($ARGV[0]) > 0;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to