Title: [258644] trunk/Tools
- Revision
- 258644
- Author
- [email protected]
- Date
- 2020-03-18 10:09:33 -0700 (Wed, 18 Mar 2020)
Log Message
REGRESSION (r258626): test262 tests failing to run on macOS with error 'Undefined subroutine &Test262::Runner::setConfiguration'
https://bugs.webkit.org/show_bug.cgi?id=209238
Reviewed by Jonathan Bedard.
* Scripts/test262-runner: Perform the flatpak check on Linux only.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (258643 => 258644)
--- trunk/Tools/ChangeLog 2020-03-18 17:07:08 UTC (rev 258643)
+++ trunk/Tools/ChangeLog 2020-03-18 17:09:33 UTC (rev 258644)
@@ -1,3 +1,12 @@
+2020-03-18 Philippe Normand <[email protected]>
+
+ REGRESSION (r258626): test262 tests failing to run on macOS with error 'Undefined subroutine &Test262::Runner::setConfiguration'
+ https://bugs.webkit.org/show_bug.cgi?id=209238
+
+ Reviewed by Jonathan Bedard.
+
+ * Scripts/test262-runner: Perform the flatpak check on Linux only.
+
2020-03-18 Stephan Szabo <[email protected]>
[WinCairo] archive-built-product fails after r258612
Modified: trunk/Tools/Scripts/test262-runner (258643 => 258644)
--- trunk/Tools/Scripts/test262-runner 2020-03-18 17:07:08 UTC (rev 258643)
+++ trunk/Tools/Scripts/test262-runner 2020-03-18 17:09:33 UTC (rev 258644)
@@ -38,7 +38,8 @@
use lib $FindBin::Bin;
use File::Spec::Functions qw(catfile);
- if (!grep(/^--no-flatpak-check$/, @ARGV)) {
+ my $osName = $Config{osname};
+ if ($osName eq "linux" && !grep(/^--no-flatpak-check$/, @ARGV)) {
if (eval {require webkitdirs; 1;}) {
webkitdirs->import(qw(shouldUseFlatpak runInFlatpak sourceDir));
if (shouldUseFlatpak()) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes