Title: [265312] trunk/Tools
Revision
265312
Author
ticaiol...@gmail.com
Date
2020-08-05 16:54:45 -0700 (Wed, 05 Aug 2020)

Log Message

r264813 breaks Make runner on remote devices
https://bugs.webkit.org/show_bug.cgi?id=215179

Reviewed by Saam Barati.

This patch is setting up the proper `LD_LIBRARY_PATH` value to run JSC
stress tests on remote devices.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (265311 => 265312)


--- trunk/Tools/ChangeLog	2020-08-05 23:21:23 UTC (rev 265311)
+++ trunk/Tools/ChangeLog	2020-08-05 23:54:45 UTC (rev 265312)
@@ -1,3 +1,15 @@
+2020-08-05  Caio Lima  <ticaiol...@gmail.com>
+
+        r264813 breaks Make runner on remote devices
+        https://bugs.webkit.org/show_bug.cgi?id=215179
+
+        Reviewed by Saam Barati.
+
+        This patch is setting up the proper `LD_LIBRARY_PATH` value to run JSC
+        stress tests on remote devices.
+
+        * Scripts/run-jsc-stress-tests:
+
 2020-08-05  Brady Eidson  <beid...@apple.com>
 
         Add a createWebArchiveData from a custom scheme API test

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (265311 => 265312)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2020-08-05 23:21:23 UTC (rev 265311)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2020-08-05 23:54:45 UTC (rev 265312)
@@ -2115,7 +2115,7 @@
 
 def exportBaseEnvironmentVariables
     dyldFrameworkPath = "\\$(cd #{$testingFrameworkPath.dirname}; pwd)"
-    ldLibraryPath = "\\$(pwd)/#{$outputDir.basename}/#{$jscPath.dirname}"
+    ldLibraryPath = "\\$(cd #{$testingFrameworkPath.dirname}/..; pwd)/#{$jscPath.dirname}"
     [
         "export DYLD_FRAMEWORK_PATH=#{dyldFrameworkPath} && ",
         "export LD_LIBRARY_PATH=#{ldLibraryPath} &&",
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to