<?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>72947</bug_id>
          
          <creation_ts>2011-11-22 06:06:45 -0800</creation_ts>
          <short_desc>[Qt] Add support for using OWRT with Qt5</short_desc>
          <delta_ts>2011-11-25 06:23:19 -0800</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>All</rep_platform>
          <op_sys>All</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>Qt, QtTriaged</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Csaba Osztrogonác">ossy</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>hausmann</cc>
    
    <cc>kadam</cc>
    
    <cc>ossy</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>507551</commentid>
    <comment_count>0</comment_count>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2011-11-22 06:06:45 -0800</bug_when>
    <thetext>It seems -graphicssystem command line argument isn&apos;t supported by Qt5:
// ### Qt4 compatibility, remove?
static inline void setGraphicsSystem(const QString &amp;) {}

But ORWT still pass this argument (-graphicssystem raster) to QtTestBrowser,
and QtTestBrowser open an empty window with URL-bar: http://raster and &quot;Host not found&quot; text.

We shouldn&apos;t pass &quot;-graphicssystem raster&quot; argument if Qt version &gt;= 5.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>508746</commentid>
    <comment_count>1</comment_count>
      <attachid>116503</attachid>
    <who name="Ádám Kallai">kadam</who>
    <bug_when>2011-11-24 06:23:46 -0800</bug_when>
    <thetext>Created attachment 116503
proposed fix</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>508754</commentid>
    <comment_count>2</comment_count>
      <attachid>116503</attachid>
    <who name="Simon Hausmann">hausmann</who>
    <bug_when>2011-11-24 06:52:25 -0800</bug_when>
    <thetext>Comment on attachment 116503
proposed fix

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

I think the idea is good. The ChangeLog entry is missing and I have a few nitpicks :)

&gt; Tools/Scripts/old-run-webkit-tests:242
&gt; +    } elsif (getQtVersion() eq &quot;5.0&quot;) {
&gt; +        $platform = &quot;qt-5.0&quot;;

This seems unrelated?

&gt; Tools/Scripts/old-run-webkit-tests:1222
&gt; +  if(!(getQtVersion() ge &quot;5.0&quot;)) {

Shouldn&apos;t that properly check the major version of Qt only? (if major-version &lt; 4)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>508765</commentid>
    <comment_count>3</comment_count>
      <attachid>116503</attachid>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2011-11-24 07:16:35 -0800</bug_when>
    <thetext>Comment on attachment 116503
proposed fix

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

&gt;&gt; Tools/Scripts/old-run-webkit-tests:242
&gt;&gt; +        $platform = &quot;qt-5.0&quot;;
&gt; 
&gt; This seems unrelated?

No, we need this change too, because qt-5.0 platform wasn&apos;t supported by ORWT before.

&gt;&gt; Tools/Scripts/old-run-webkit-tests:1222
&gt;&gt; +  if(!(getQtVersion() ge &quot;5.0&quot;)) {
&gt; 
&gt; Shouldn&apos;t that properly check the major version of Qt only? (if major-version &lt; 4)

Of course we can check only the major version, but getQtVersion() (webkitdirs.pm)
parses qmake&apos;s output and return major&amp;minor version in this format as string.

I think, that if ((getQtVersion() lt &quot;5.0&quot;)) would be good, because 
it is equivalent to (non-existent-yet) (getQtMajorVersion() &lt; 5).</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509071</commentid>
    <comment_count>4</comment_count>
      <attachid>116592</attachid>
    <who name="Ádám Kallai">kadam</who>
    <bug_when>2011-11-25 04:01:33 -0800</bug_when>
    <thetext>Created attachment 116592
proposed fix</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509082</commentid>
    <comment_count>5</comment_count>
      <attachid>116592</attachid>
    <who name="Simon Hausmann">hausmann</who>
    <bug_when>2011-11-25 04:12:42 -0800</bug_when>
    <thetext>Comment on attachment 116592
proposed fix

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

&gt; Tools/ChangeLog:1
&gt; +2011-11-25  ÃdÃ¡m Kallai  &lt;Kallai.Adam@stud.u-szeged.hu&gt;

It looks like your first name isn&apos;t properly utf-8 encoded here. Is that possible?

&gt; Tools/Scripts/old-run-webkit-tests:242
&gt; +    } elsif (getQtVersion() eq &quot;5.0&quot;) {
&gt; +        $platform = &quot;qt-5.0&quot;;

This looks like an unrelated change. Is that intentional?

&gt; Tools/Scripts/old-run-webkit-tests:1224
&gt; -  unshift @configurationArgs, qw(-graphicssystem raster -style windows);
&gt; +  unshift @configurationArgs, qw(-style windows);
&gt; +  if(getQtVersion() lt &quot;5.0&quot;) {
&gt; +    unshift @configurationArgs, qw(-graphicssystem raster);
&gt; +  }

This looks much better :). Out of curiosity: Does &apos;lt&apos; work with strings like &quot;5.0&quot; like that?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509083</commentid>
    <comment_count>6</comment_count>
    <who name="Simon Hausmann">hausmann</who>
    <bug_when>2011-11-25 04:13:36 -0800</bug_when>
    <thetext>Ooops, I didn&apos;t see Ossy&apos;s comment. Let me see again :)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509084</commentid>
    <comment_count>7</comment_count>
    <who name="Simon Hausmann">hausmann</who>
    <bug_when>2011-11-25 04:15:15 -0800</bug_when>
    <thetext>(In reply to comment #3)
&gt; (From update of attachment 116503 [details])
&gt; View in context: https://bugs.webkit.org/attachment.cgi?id=116503&amp;action=review
&gt; 
&gt; &gt;&gt; Tools/Scripts/old-run-webkit-tests:242
&gt; &gt;&gt; +        $platform = &quot;qt-5.0&quot;;
&gt; &gt; 
&gt; &gt; This seems unrelated?
&gt; 
&gt; No, we need this change too, because qt-5.0 platform wasn&apos;t supported by ORWT before.

Shouldn&apos;t this be mentioned in the ChangeLog then?

Right now the title of the bug is about not passing -graphicssystem raster when running OWRT with Qt 5. I do however have the impression that the title of this bug should be &quot;Add support for using OWRT with Qt 5&quot; or similar, and that the ChangeLog should mention this line.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509096</commentid>
    <comment_count>8</comment_count>
      <attachid>116592</attachid>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2011-11-25 04:48:32 -0800</bug_when>
    <thetext>Comment on attachment 116592
proposed fix

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

&gt;&gt; Tools/ChangeLog:1
&gt;&gt; +2011-11-25  ÃdÃ¡m Kallai  &lt;Kallai.Adam@stud.u-szeged.hu&gt;
&gt; 
&gt; It looks like your first name isn&apos;t properly utf-8 encoded here. Is that possible?

I think pretty diff can&apos;t handle correct the utf8 names.
Check one of my patches: https://bugs.webkit.org/attachment.cgi?id=114235&amp;action=review
or one of Tor Arne&apos;s patches: https://bugs.webkit.org/attachment.cgi?id=104833&amp;action=review

&gt;&gt; Tools/Scripts/old-run-webkit-tests:1224
&gt;&gt; +  }
&gt; 
&gt; This looks much better :). Out of curiosity: Does &apos;lt&apos; work with strings like &quot;5.0&quot; like that?

Unfortunately perl differs from bash. lt, eq, gt, ... are for string comparision in perl.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509098</commentid>
    <comment_count>9</comment_count>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2011-11-25 04:52:10 -0800</bug_when>
    <thetext>(In reply to comment #7)
&gt; (In reply to comment #3)
&gt; &gt; (From update of attachment 116503 [details] [details])
&gt; &gt; View in context: https://bugs.webkit.org/attachment.cgi?id=116503&amp;action=review
&gt; &gt; 
&gt; &gt; &gt;&gt; Tools/Scripts/old-run-webkit-tests:242
&gt; &gt; &gt;&gt; +        $platform = &quot;qt-5.0&quot;;
&gt; &gt; &gt; 
&gt; &gt; &gt; This seems unrelated?
&gt; &gt; 
&gt; &gt; No, we need this change too, because qt-5.0 platform wasn&apos;t supported by ORWT before.
&gt; 
&gt; Shouldn&apos;t this be mentioned in the ChangeLog then?
You&apos;re right, we should.
 
&gt; Right now the title of the bug is about not passing -graphicssystem raster when running OWRT with Qt 5. I do however have the impression that the title of this bug should be &quot;Add support for using OWRT with Qt 5&quot; or similar, and that the ChangeLog should mention this line.

It&apos;s reasonable, I fixed the title of the bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509124</commentid>
    <comment_count>10</comment_count>
      <attachid>116608</attachid>
    <who name="Ádám Kallai">kadam</who>
    <bug_when>2011-11-25 05:57:28 -0800</bug_when>
    <thetext>Created attachment 116608
proposed fix</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509128</commentid>
    <comment_count>11</comment_count>
      <attachid>116608</attachid>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2011-11-25 06:05:00 -0800</bug_when>
    <thetext>Comment on attachment 116608
proposed fix

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

LGTM, r=me.

&gt; Tools/Scripts/old-run-webkit-tests:1222
&gt; +  if(getQtVersion() lt &quot;5.0&quot;) {

only a little nit: missing space after the if.(I&apos;ll fix it locally before landing.)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>509137</commentid>
    <comment_count>12</comment_count>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2011-11-25 06:23:07 -0800</bug_when>
    <thetext>Landed in http://trac.webkit.org/changeset/101169</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>116503</attachid>
            <date>2011-11-24 06:23:46 -0800</date>
            <delta_ts>2011-11-24 07:16:35 -0800</delta_ts>
            <desc>proposed fix</desc>
            <filename>ORWT.patch</filename>
            <type>text/plain</type>
            <size>1074</size>
            <attacher name="Ádám Kallai">kadam</attacher>
            
              <data encoding="base64">ZGlmZiAtLWdpdCBhL1Rvb2xzL1NjcmlwdHMvb2xkLXJ1bi13ZWJraXQtdGVzdHMgYi9Ub29scy9T
Y3JpcHRzL29sZC1ydW4td2Via2l0LXRlc3RzCmluZGV4IGVkYTg2YWYuLjFlNWM2NjEgMTAwNzU1
Ci0tLSBhL1Rvb2xzL1NjcmlwdHMvb2xkLXJ1bi13ZWJraXQtdGVzdHMKKysrIGIvVG9vbHMvU2Ny
aXB0cy9vbGQtcnVuLXdlYmtpdC10ZXN0cwpAQCAtMjM4LDYgKzIzOCw4IEBAIGlmIChpc0FwcGxl
TWFjV2ViS2l0KCkpIHsKICAgICAgICAgJHBsYXRmb3JtID0gInF0LWFybSI7CiAgICAgfSBlbHNp
ZiAoZ2V0UXRWZXJzaW9uKCkgZXEgIjQuOCIpIHsKICAgICAgICAgJHBsYXRmb3JtID0gInF0LTQu
OCI7CisgICAgfSBlbHNpZiAoZ2V0UXRWZXJzaW9uKCkgZXEgIjUuMCIpIHsKKyAgICAgICAgJHBs
YXRmb3JtID0gInF0LTUuMCI7CiAgICAgfSBlbHNpZiAoaXNMaW51eCgpKSB7CiAgICAgICAgICRw
bGF0Zm9ybSA9ICJxdC1saW51eCI7CiAgICAgfSBlbHNpZiAoaXNXaW5kb3dzKCkgfHwgaXNDeWd3
aW4oKSkgewpAQCAtMTIxNiw3ICsxMjE4LDEwIEBAIGlmIChpc0d0aygpKSB7CiAgIHB1c2goQGNv
bmZpZ3VyYXRpb25BcmdzLCAnLTInKSBpZiAkdXNlV2ViS2l0VGVzdFJ1bm5lcjsKICAgc3lzdGVt
ICJUb29scy9TY3JpcHRzL3J1bi1sYXVuY2hlciIsIEBjb25maWd1cmF0aW9uQXJncywgImZpbGU6
Ly8iLiR0ZXN0UmVzdWx0cyBpZiAkbGF1bmNoU2FmYXJpOwogfSBlbHNpZiAoaXNRdCgpKSB7Ci0g
IHVuc2hpZnQgQGNvbmZpZ3VyYXRpb25BcmdzLCBxdygtZ3JhcGhpY3NzeXN0ZW0gcmFzdGVyIC1z
dHlsZSB3aW5kb3dzKTsKKyAgdW5zaGlmdCBAY29uZmlndXJhdGlvbkFyZ3MsIHF3KC1zdHlsZSB3
aW5kb3dzKTsKKyAgaWYoIShnZXRRdFZlcnNpb24oKSBnZSAiNS4wIikpIHsKKyAgICB1bnNoaWZ0
IEBjb25maWd1cmF0aW9uQXJncywgcXcoLWdyYXBoaWNzc3lzdGVtIHJhc3Rlcik7CisgIH0KICAg
aWYgKGlzQ3lnd2luKCkpIHsKICAgICAkdGVzdFJlc3VsdHMgPSAiLyIgLiB0b1dpbmRvd3NQYXRo
KCR0ZXN0UmVzdWx0cyk7CiAgICAgJHRlc3RSZXN1bHRzID1+IHMvXFwvXC8vZzsK
</data>
<flag name="review"
          id="115691"
          type_id="1"
          status="-"
          setter="hausmann"
    />
    <flag name="commit-queue"
          id="115692"
          type_id="3"
          status="-"
          setter="hausmann"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>116592</attachid>
            <date>2011-11-25 04:01:33 -0800</date>
            <delta_ts>2011-11-25 04:48:32 -0800</delta_ts>
            <desc>proposed fix</desc>
            <filename>ORWT.patch</filename>
            <type>text/plain</type>
            <size>1584</size>
            <attacher name="Ádám Kallai">kadam</attacher>
            
              <data encoding="base64">ZGlmZiAtLWdpdCBhL1Rvb2xzL0NoYW5nZUxvZyBiL1Rvb2xzL0NoYW5nZUxvZwppbmRleCBhNmU4
NjMwLi5jNzBkNDgyIDEwMDY0NAotLS0gYS9Ub29scy9DaGFuZ2VMb2cKKysrIGIvVG9vbHMvQ2hh
bmdlTG9nCkBAIC0xLDMgKzEsMTMgQEAKKzIwMTEtMTEtMjUgIMOBZMOhbSBLYWxsYWkgIDxLYWxs
YWkuQWRhbUBzdHVkLnUtc3plZ2VkLmh1PgorCisgICAgICAgIFtRdF0gRG9uJ3QgcGFzcyAtZ3Jh
cGhpY3NzeXN0ZW0gdG8gUXRUZXN0QnJvd3NlciBpZiB1c2luZyBRdDUKKyAgICAgICAgCisgICAg
ICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3JnL3Nob3dfYnVnLmNnaT9pZD03Mjk0NworCisgICAg
ICAgIFJldmlld2VkIGJ5IE5PQk9EWSAoT09QUyEpLgorCisgICAgICAgICogU2NyaXB0cy9vbGQt
cnVuLXdlYmtpdC10ZXN0czoKKwogMjAxMS0xMS0yMSAgWXV0YSBLaXRhbXVyYSAgPHl1dGFrQGNo
cm9taXVtLm9yZz4KIAogICAgICAgICBbR1RLXSBFbmFibGUgV2ViU29ja2V0IGh5YmkgdGVzdHMK
ZGlmZiAtLWdpdCBhL1Rvb2xzL1NjcmlwdHMvb2xkLXJ1bi13ZWJraXQtdGVzdHMgYi9Ub29scy9T
Y3JpcHRzL29sZC1ydW4td2Via2l0LXRlc3RzCmluZGV4IGVkYTg2YWYuLjYyNzI1ZTAgMTAwNzU1
Ci0tLSBhL1Rvb2xzL1NjcmlwdHMvb2xkLXJ1bi13ZWJraXQtdGVzdHMKKysrIGIvVG9vbHMvU2Ny
aXB0cy9vbGQtcnVuLXdlYmtpdC10ZXN0cwpAQCAtMjM4LDYgKzIzOCw4IEBAIGlmIChpc0FwcGxl
TWFjV2ViS2l0KCkpIHsKICAgICAgICAgJHBsYXRmb3JtID0gInF0LWFybSI7CiAgICAgfSBlbHNp
ZiAoZ2V0UXRWZXJzaW9uKCkgZXEgIjQuOCIpIHsKICAgICAgICAgJHBsYXRmb3JtID0gInF0LTQu
OCI7CisgICAgfSBlbHNpZiAoZ2V0UXRWZXJzaW9uKCkgZXEgIjUuMCIpIHsKKyAgICAgICAgJHBs
YXRmb3JtID0gInF0LTUuMCI7CiAgICAgfSBlbHNpZiAoaXNMaW51eCgpKSB7CiAgICAgICAgICRw
bGF0Zm9ybSA9ICJxdC1saW51eCI7CiAgICAgfSBlbHNpZiAoaXNXaW5kb3dzKCkgfHwgaXNDeWd3
aW4oKSkgewpAQCAtMTIxNiw3ICsxMjE4LDEwIEBAIGlmIChpc0d0aygpKSB7CiAgIHB1c2goQGNv
bmZpZ3VyYXRpb25BcmdzLCAnLTInKSBpZiAkdXNlV2ViS2l0VGVzdFJ1bm5lcjsKICAgc3lzdGVt
ICJUb29scy9TY3JpcHRzL3J1bi1sYXVuY2hlciIsIEBjb25maWd1cmF0aW9uQXJncywgImZpbGU6
Ly8iLiR0ZXN0UmVzdWx0cyBpZiAkbGF1bmNoU2FmYXJpOwogfSBlbHNpZiAoaXNRdCgpKSB7Ci0g
IHVuc2hpZnQgQGNvbmZpZ3VyYXRpb25BcmdzLCBxdygtZ3JhcGhpY3NzeXN0ZW0gcmFzdGVyIC1z
dHlsZSB3aW5kb3dzKTsKKyAgdW5zaGlmdCBAY29uZmlndXJhdGlvbkFyZ3MsIHF3KC1zdHlsZSB3
aW5kb3dzKTsKKyAgaWYoZ2V0UXRWZXJzaW9uKCkgbHQgIjUuMCIpIHsKKyAgICB1bnNoaWZ0IEBj
b25maWd1cmF0aW9uQXJncywgcXcoLWdyYXBoaWNzc3lzdGVtIHJhc3Rlcik7CisgIH0KICAgaWYg
KGlzQ3lnd2luKCkpIHsKICAgICAkdGVzdFJlc3VsdHMgPSAiLyIgLiB0b1dpbmRvd3NQYXRoKCR0
ZXN0UmVzdWx0cyk7CiAgICAgJHRlc3RSZXN1bHRzID1+IHMvXFwvXC8vZzsK
</data>
<flag name="review"
          id="115794"
          type_id="1"
          status="-"
          setter="hausmann"
    />
    <flag name="commit-queue"
          id="115795"
          type_id="3"
          status="-"
          setter="hausmann"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>116608</attachid>
            <date>2011-11-25 05:57:28 -0800</date>
            <delta_ts>2011-11-25 06:23:19 -0800</delta_ts>
            <desc>proposed fix</desc>
            <filename>ORWT.patch</filename>
            <type>text/plain</type>
            <size>1646</size>
            <attacher name="Ádám Kallai">kadam</attacher>
            
              <data encoding="base64">ZGlmZiAtLWdpdCBhL1Rvb2xzL0NoYW5nZUxvZyBiL1Rvb2xzL0NoYW5nZUxvZwppbmRleCBhNmU4
NjMwLi5hMTIwMjM0IDEwMDY0NAotLS0gYS9Ub29scy9DaGFuZ2VMb2cKKysrIGIvVG9vbHMvQ2hh
bmdlTG9nCkBAIC0xLDMgKzEsMTQgQEAKKzIwMTEtMTEtMjUgIMOBZMOhbSBLYWxsYWkgIDxLYWxs
YWkuQWRhbUBzdHVkLnUtc3plZ2VkLmh1PgorCisgICAgICAgIFtRdF0gQWRkIHN1cHBvcnQgZm9y
IHVzaW5nIE9XUlQgd2l0aCBRdDUKKyAgICAgICAgaHR0cHM6Ly9idWdzLndlYmtpdC5vcmcvc2hv
d19idWcuY2dpP2lkPTcyOTQ3CisKKyAgICAgICAgQWRkIHF0LTUuMCBwbGF0Zm9ybSBhbmQgZG9u
J3QgcGFzcyAtZ3JhcGhpY3NzeXN0ZW0gdG8gUXRUZXN0QnJvd3NlciBpZiB1c2luZyBRdDUuCisK
KyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkuCisKKyAgICAgICAgKiBTY3JpcHRz
L29sZC1ydW4td2Via2l0LXRlc3RzOgorCiAyMDExLTExLTIxICBZdXRhIEtpdGFtdXJhICA8eXV0
YWtAY2hyb21pdW0ub3JnPgogCiAgICAgICAgIFtHVEtdIEVuYWJsZSBXZWJTb2NrZXQgaHliaSB0
ZXN0cwpkaWZmIC0tZ2l0IGEvVG9vbHMvU2NyaXB0cy9vbGQtcnVuLXdlYmtpdC10ZXN0cyBiL1Rv
b2xzL1NjcmlwdHMvb2xkLXJ1bi13ZWJraXQtdGVzdHMKaW5kZXggZWRhODZhZi4uNjI3MjVlMCAx
MDA3NTUKLS0tIGEvVG9vbHMvU2NyaXB0cy9vbGQtcnVuLXdlYmtpdC10ZXN0cworKysgYi9Ub29s
cy9TY3JpcHRzL29sZC1ydW4td2Via2l0LXRlc3RzCkBAIC0yMzgsNiArMjM4LDggQEAgaWYgKGlz
QXBwbGVNYWNXZWJLaXQoKSkgewogICAgICAgICAkcGxhdGZvcm0gPSAicXQtYXJtIjsKICAgICB9
IGVsc2lmIChnZXRRdFZlcnNpb24oKSBlcSAiNC44IikgewogICAgICAgICAkcGxhdGZvcm0gPSAi
cXQtNC44IjsKKyAgICB9IGVsc2lmIChnZXRRdFZlcnNpb24oKSBlcSAiNS4wIikgeworICAgICAg
ICAkcGxhdGZvcm0gPSAicXQtNS4wIjsKICAgICB9IGVsc2lmIChpc0xpbnV4KCkpIHsKICAgICAg
ICAgJHBsYXRmb3JtID0gInF0LWxpbnV4IjsKICAgICB9IGVsc2lmIChpc1dpbmRvd3MoKSB8fCBp
c0N5Z3dpbigpKSB7CkBAIC0xMjE2LDcgKzEyMTgsMTAgQEAgaWYgKGlzR3RrKCkpIHsKICAgcHVz
aChAY29uZmlndXJhdGlvbkFyZ3MsICctMicpIGlmICR1c2VXZWJLaXRUZXN0UnVubmVyOwogICBz
eXN0ZW0gIlRvb2xzL1NjcmlwdHMvcnVuLWxhdW5jaGVyIiwgQGNvbmZpZ3VyYXRpb25BcmdzLCAi
ZmlsZTovLyIuJHRlc3RSZXN1bHRzIGlmICRsYXVuY2hTYWZhcmk7CiB9IGVsc2lmIChpc1F0KCkp
IHsKLSAgdW5zaGlmdCBAY29uZmlndXJhdGlvbkFyZ3MsIHF3KC1ncmFwaGljc3N5c3RlbSByYXN0
ZXIgLXN0eWxlIHdpbmRvd3MpOworICB1bnNoaWZ0IEBjb25maWd1cmF0aW9uQXJncywgcXcoLXN0
eWxlIHdpbmRvd3MpOworICBpZihnZXRRdFZlcnNpb24oKSBsdCAiNS4wIikgeworICAgIHVuc2hp
ZnQgQGNvbmZpZ3VyYXRpb25BcmdzLCBxdygtZ3JhcGhpY3NzeXN0ZW0gcmFzdGVyKTsKKyAgfQog
ICBpZiAoaXNDeWd3aW4oKSkgewogICAgICR0ZXN0UmVzdWx0cyA9ICIvIiAuIHRvV2luZG93c1Bh
dGgoJHRlc3RSZXN1bHRzKTsKICAgICAkdGVzdFJlc3VsdHMgPX4gcy9cXC9cLy9nOwo=
</data>

          </attachment>
      

    </bug>

</bugzilla>