Title: [171324] trunk/Tools
Revision
171324
Author
[email protected]
Date
2014-07-21 17:29:24 -0700 (Mon, 21 Jul 2014)

Log Message

Unreviewed build fix after r171319.

* Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl: This test should
only execute on Windows. It will fail on other platforms, so give it a way to
successfully exit.

Modified Paths

Diff

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


--- trunk/Tools/ChangeLog	2014-07-22 00:26:19 UTC (rev 171323)
+++ trunk/Tools/ChangeLog	2014-07-22 00:29:24 UTC (rev 171324)
@@ -1,5 +1,13 @@
 2014-07-21  Brent Fulgham  <[email protected]>
 
+        Unreviewed build fix after r171319.
+
+        * Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl: This test should
+        only execute on Windows. It will fail on other platforms, so give it a way to
+        successfully exit.
+
+2014-07-21  Brent Fulgham  <[email protected]>
+
         [Win] Extend auto-version.pl to support 5-tuple versions
         https://bugs.webkit.org/show_bug.cgi?id=135124
         <rdar://problem/17750334>

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


--- trunk/Tools/Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl	2014-07-22 00:26:19 UTC (rev 171323)
+++ trunk/Tools/Scripts/webkitperl/auto-version_unittest/autoVersionTests.pl	2014-07-22 00:29:24 UTC (rev 171324)
@@ -372,6 +372,13 @@
     },
 );
 
+# This test should only be run on Windows
+if ($^O ne 'MSWin32') {
+    plan(tests => 1);
+    is(1, 1, 'do nothing for non-Windows builds.');
+    exit 0;    
+}
+
 my $testCasesCount = scalar(@testCases) * 10; # 10 expected results
 plan(tests => $testCasesCount);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to