Title: [171325] trunk/Tools
Revision
171325
Author
[email protected]
Date
2014-07-21 17:37:13 -0700 (Mon, 21 Jul 2014)

Log Message

[Win] Follow-up for r171324.

* Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl: Cygwin
perl reports itself as 'cygwin'; native Windows Perl reports as
'MSWin32'. We need to handle both cases.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (171324 => 171325)


--- trunk/Tools/ChangeLog	2014-07-22 00:29:24 UTC (rev 171324)
+++ trunk/Tools/ChangeLog	2014-07-22 00:37:13 UTC (rev 171325)
@@ -1,5 +1,13 @@
 2014-07-21  Brent Fulgham  <[email protected]>
 
+        [Win] Follow-up for r171324.
+
+        * Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl: Cygwin
+        perl reports itself as 'cygwin'; native Windows Perl reports as
+        'MSWin32'. We need to handle both cases.
+
+2014-07-21  Brent Fulgham  <[email protected]>
+
         Unreviewed build fix after r171319.
 
         * Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl: This test should

Modified: trunk/Tools/Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl (171324 => 171325)


--- trunk/Tools/Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl	2014-07-22 00:29:24 UTC (rev 171324)
+++ trunk/Tools/Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl	2014-07-22 00:37:13 UTC (rev 171325)
@@ -373,7 +373,7 @@
 );
 
 # This test should only be run on Windows
-if ($^O ne 'MSWin32') {
+if ($^O ne 'MSWin32' && $^O ne 'cygwin') {
     plan(tests => 1);
     is(1, 1, 'do nothing for non-Windows builds.');
     exit 0;    
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to