<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>49080</bug_id>
          
          <creation_ts>2010-11-05 11:24:41 -0700</creation_ts>
          <short_desc>webkit-perl tests fail on win32 Perl due to lack of list form of pipe open implementation</short_desc>
          <delta_ts>2011-08-23 12:27:50 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>Tools / Tests</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>PC</rep_platform>
          <op_sys>Windows 7</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          <blocked>48166</blocked>
          <everconfirmed>1</everconfirmed>
          <reporter name="Dimitri Glazkov (Google)">dglazkov</reporter>
          <assigned_to name="Patrick R. Gansterer">paroga</assigned_to>
          <cc>aroben</cc>
    
    <cc>webkit.review.bot</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>305404</commentid>
    <comment_count>0</comment_count>
    <who name="Dimitri Glazkov (Google)">dglazkov</who>
    <bug_when>2010-11-05 11:24:41 -0700</bug_when>
    <thetext>The output is like this:


WebKitTools/Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatch.pl ............ ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/generatePatchCommand.pl ......... ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/mergeChangeLogs.pl .............. 
Dubious, test returned 25 (wstat 6400, 0x1900)
Failed 8/16 subtests 
List form of pipe open not implemented at D:/google-windows-2/chromium-win-release-tests/build/WebKitTools/Scripts/VCSUtils.pm line 1579.
# Looks like you planned 16 tests but ran 8.
# Looks like your test exited with 25 just after 8.
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl .................... ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl .............. ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl ........... ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parsePatch.pl ................... ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffFooter.pl ........... ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl ........... ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseSvnProperty.pl ............. ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseSvnPropertyValue.pl ........ ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/prepareParsedPatch.pl ........... ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/removeEOL.pl .................... ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/runPatchCommand.pl .............. ok
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/setChangeLogDateAndReviewer.pl .. ok

Test Summary Report
-------------------
WebKitTools/Scripts/webkitperl/VCSUtils_unittest/mergeChangeLogs.pl            (Wstat: 6400 Tests: 8 Failed: 0)
  Non-zero exit status: 25
  Parse errors: Bad plan.  You planned 16 tests but ran 8.
Files=15, Tests=301,  2 wallclock secs ( 0.09 usr +  0.02 sys =  0.11 CPU)
Result: FAIL
Failed 1/15 test programs. 0/301 subtests failed.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>455519</commentid>
    <comment_count>1</comment_count>
      <attachid>104868</attachid>
    <who name="Patrick R. Gansterer">paroga</who>
    <bug_when>2011-08-23 11:08:40 -0700</bug_when>
    <thetext>Created attachment 104868
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>455522</commentid>
    <comment_count>2</comment_count>
      <attachid>104868</attachid>
    <who name="Adam Roben (:aroben)">aroben</who>
    <bug_when>2011-08-23 11:11:19 -0700</bug_when>
    <thetext>Comment on attachment 104868
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=104868&amp;action=review

&gt; Tools/Scripts/VCSUtils.pm:1699
&gt; -        open(DIFF, &quot;-|&quot;, qw(diff -u -a --binary), $fileOlder, $fileMine) or die $!;
&gt; +        open(DIFF, &quot;diff -u -a --binary $fileOlder $fileMine |&quot;) or die $!;

You now need to quote $fileOlder and $fileMine in case they contain spaces.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>455527</commentid>
    <comment_count>3</comment_count>
      <attachid>104868</attachid>
    <who name="Patrick R. Gansterer">paroga</who>
    <bug_when>2011-08-23 11:15:58 -0700</bug_when>
    <thetext>Comment on attachment 104868
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=104868&amp;action=review

&gt;&gt; Tools/Scripts/VCSUtils.pm:1699
&gt;&gt; +        open(DIFF, &quot;diff -u -a --binary $fileOlder $fileMine |&quot;) or die $!;
&gt; 
&gt; You now need to quote $fileOlder and $fileMine in case they contain spaces.

We don&apos;t do correct escaping on different places. e.g. only 8 lines down: http://trac.webkit.org/browser/trunk/Tools/Scripts/VCSUtils.pm#L1707</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>455529</commentid>
    <comment_count>4</comment_count>
      <attachid>104868</attachid>
    <who name="Adam Roben (:aroben)">aroben</who>
    <bug_when>2011-08-23 11:18:05 -0700</bug_when>
    <thetext>Comment on attachment 104868
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=104868&amp;action=review

&gt;&gt;&gt; Tools/Scripts/VCSUtils.pm:1699
&gt;&gt;&gt; +        open(DIFF, &quot;diff -u -a --binary $fileOlder $fileMine |&quot;) or die $!;
&gt;&gt; 
&gt;&gt; You now need to quote $fileOlder and $fileMine in case they contain spaces.
&gt; 
&gt; We don&apos;t do correct escaping on different places. e.g. only 8 lines down: http://trac.webkit.org/browser/trunk/Tools/Scripts/VCSUtils.pm#L1707

We should fix those places (separately). We want WebKit scripts to work regardless of the path to your checkout.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>455531</commentid>
    <comment_count>5</comment_count>
      <attachid>104872</attachid>
    <who name="Patrick R. Gansterer">paroga</who>
    <bug_when>2011-08-23 11:19:42 -0700</bug_when>
    <thetext>Created attachment 104872
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>455600</commentid>
    <comment_count>6</comment_count>
      <attachid>104872</attachid>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2011-08-23 12:27:46 -0700</bug_when>
    <thetext>Comment on attachment 104872
Patch

Clearing flags on attachment: 104872

Committed r93623: &lt;http://trac.webkit.org/changeset/93623&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>455601</commentid>
    <comment_count>7</comment_count>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2011-08-23 12:27:50 -0700</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>104868</attachid>
            <date>2011-08-23 11:08:40 -0700</date>
            <delta_ts>2011-08-23 11:19:42 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-49080.patch</filename>
            <type>text/plain</type>
            <size>1196</size>
            <attacher name="Patrick R. Gansterer">paroga</attacher>
            
              <data encoding="base64">ZGlmZiAtLWdpdCBhL1Rvb2xzL0NoYW5nZUxvZyBiL1Rvb2xzL0NoYW5nZUxvZwppbmRleCA3Y2Ni
YzU1Li4wN2NiMTNmIDEwMDY0NAotLS0gYS9Ub29scy9DaGFuZ2VMb2cKKysrIGIvVG9vbHMvQ2hh
bmdlTG9nCkBAIC0xLDMgKzEsMTUgQEAKKzIwMTEtMDgtMjMgIFBhdHJpY2sgR2Fuc3RlcmVyICA8
cGFyb2dhQHdlYmtpdC5vcmc+CisKKyAgICAgICAgd2Via2l0LXBlcmwgdGVzdHMgZmFpbCBvbiB3
aW4zMiBQZXJsIGR1ZSB0byBsYWNrIG9mIGxpc3QgZm9ybSBvZiBwaXBlIG9wZW4gaW1wbGVtZW50
YXRpb24KKyAgICAgICAgaHR0cHM6Ly9idWdzLndlYmtpdC5vcmcvc2hvd19idWcuY2dpP2lkPTQ5
MDgwCisKKyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkuCisKKyAgICAgICAgVXNl
IHRoZSBzdHJpbmcgZm9ybSBvZiBwaXBlIG9wZW4gaW5zdGVhZCAobGlrZSB3ZSBkbyBhdCBhbGwg
b3RoZXIgcGxhY2VzKS4KKworICAgICAgICAqIFNjcmlwdHMvVkNTVXRpbHMucG06CisgICAgICAg
IChtZXJnZUNoYW5nZUxvZ3MpOgorCiAyMDExLTA4LTE0ICBBZGFtIEJhcnRoICA8YWJhcnRoQHdl
YmtpdC5vcmc+CiAKICAgICAgICAgU3dpdGNoIHJlc3VsdHMgZGV0YWlsIHZpZXcgb3ZlciB0byBu
ZXctc3R5bGUgb2JqZWN0LW9yaWVudGVkIFVJIHdpZGdldHMKZGlmZiAtLWdpdCBhL1Rvb2xzL1Nj
cmlwdHMvVkNTVXRpbHMucG0gYi9Ub29scy9TY3JpcHRzL1ZDU1V0aWxzLnBtCmluZGV4IDE0MTEz
MDEuLjcyZjM4MmEgMTAwNjQ0Ci0tLSBhL1Rvb2xzL1NjcmlwdHMvVkNTVXRpbHMucG0KKysrIGIv
VG9vbHMvU2NyaXB0cy9WQ1NVdGlscy5wbQpAQCAtMTY5Niw3ICsxNjk2LDcgQEAgc3ViIG1lcmdl
Q2hhbmdlTG9ncygkJCQpCiAgICAgICAgIHJlbmFtZSgkZmlsZU1pbmUsICIkZmlsZU1pbmUuc2F2
ZSIpOwogICAgICAgICByZW5hbWUoJGZpbGVPbGRlciwgIiRmaWxlT2xkZXIuc2F2ZSIpOwogICAg
IH0gZWxzZSB7Ci0gICAgICAgIG9wZW4oRElGRiwgIi18IiwgcXcoZGlmZiAtdSAtYSAtLWJpbmFy
eSksICRmaWxlT2xkZXIsICRmaWxlTWluZSkgb3IgZGllICQhOworICAgICAgICBvcGVuKERJRkYs
ICJkaWZmIC11IC1hIC0tYmluYXJ5ICRmaWxlT2xkZXIgJGZpbGVNaW5lIHwiKSBvciBkaWUgJCE7
CiAgICAgICAgICRwYXRjaCA9IDxESUZGPjsKICAgICAgICAgY2xvc2UoRElGRik7CiAgICAgfQo=
</data>
<flag name="review"
          id="100857"
          type_id="1"
          status="-"
          setter="aroben"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>104872</attachid>
            <date>2011-08-23 11:19:42 -0700</date>
            <delta_ts>2011-08-23 12:27:46 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-49080.patch</filename>
            <type>text/plain</type>
            <size>1204</size>
            <attacher name="Patrick R. Gansterer">paroga</attacher>
            
              <data encoding="base64">ZGlmZiAtLWdpdCBhL1Rvb2xzL0NoYW5nZUxvZyBiL1Rvb2xzL0NoYW5nZUxvZwppbmRleCA3Y2Ni
YzU1Li4wN2NiMTNmIDEwMDY0NAotLS0gYS9Ub29scy9DaGFuZ2VMb2cKKysrIGIvVG9vbHMvQ2hh
bmdlTG9nCkBAIC0xLDMgKzEsMTUgQEAKKzIwMTEtMDgtMjMgIFBhdHJpY2sgR2Fuc3RlcmVyICA8
cGFyb2dhQHdlYmtpdC5vcmc+CisKKyAgICAgICAgd2Via2l0LXBlcmwgdGVzdHMgZmFpbCBvbiB3
aW4zMiBQZXJsIGR1ZSB0byBsYWNrIG9mIGxpc3QgZm9ybSBvZiBwaXBlIG9wZW4gaW1wbGVtZW50
YXRpb24KKyAgICAgICAgaHR0cHM6Ly9idWdzLndlYmtpdC5vcmcvc2hvd19idWcuY2dpP2lkPTQ5
MDgwCisKKyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkuCisKKyAgICAgICAgVXNl
IHRoZSBzdHJpbmcgZm9ybSBvZiBwaXBlIG9wZW4gaW5zdGVhZCAobGlrZSB3ZSBkbyBhdCBhbGwg
b3RoZXIgcGxhY2VzKS4KKworICAgICAgICAqIFNjcmlwdHMvVkNTVXRpbHMucG06CisgICAgICAg
IChtZXJnZUNoYW5nZUxvZ3MpOgorCiAyMDExLTA4LTE0ICBBZGFtIEJhcnRoICA8YWJhcnRoQHdl
YmtpdC5vcmc+CiAKICAgICAgICAgU3dpdGNoIHJlc3VsdHMgZGV0YWlsIHZpZXcgb3ZlciB0byBu
ZXctc3R5bGUgb2JqZWN0LW9yaWVudGVkIFVJIHdpZGdldHMKZGlmZiAtLWdpdCBhL1Rvb2xzL1Nj
cmlwdHMvVkNTVXRpbHMucG0gYi9Ub29scy9TY3JpcHRzL1ZDU1V0aWxzLnBtCmluZGV4IDE0MTEz
MDEuLjcyZjM4MmEgMTAwNjQ0Ci0tLSBhL1Rvb2xzL1NjcmlwdHMvVkNTVXRpbHMucG0KKysrIGIv
VG9vbHMvU2NyaXB0cy9WQ1NVdGlscy5wbQpAQCAtMTY5Niw3ICsxNjk2LDcgQEAgc3ViIG1lcmdl
Q2hhbmdlTG9ncygkJCQpCiAgICAgICAgIHJlbmFtZSgkZmlsZU1pbmUsICIkZmlsZU1pbmUuc2F2
ZSIpOwogICAgICAgICByZW5hbWUoJGZpbGVPbGRlciwgIiRmaWxlT2xkZXIuc2F2ZSIpOwogICAg
IH0gZWxzZSB7Ci0gICAgICAgIG9wZW4oRElGRiwgIi18IiwgcXcoZGlmZiAtdSAtYSAtLWJpbmFy
eSksICRmaWxlT2xkZXIsICRmaWxlTWluZSkgb3IgZGllICQhOworICAgICAgICBvcGVuKERJRkYs
ICJkaWZmIC11IC1hIC0tYmluYXJ5IFwiJGZpbGVPbGRlclwiIFwiJGZpbGVNaW5lXCIgfCIpIG9y
IGRpZSAkITsKICAgICAgICAgJHBhdGNoID0gPERJRkY+OwogICAgICAgICBjbG9zZShESUZGKTsK
ICAgICB9Cg==
</data>

          </attachment>
      

    </bug>

</bugzilla>