<?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>68511</bug_id>
          
          <creation_ts>2011-09-21 01:52:56 -0700</creation_ts>
          <short_desc>[EFL] Script for running WebKit-EFL Unit Tests</short_desc>
          <delta_ts>2012-07-03 21:09:30 -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>WebKit EFL</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>All</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>DUPLICATE</resolution>
          <dup_id>87251</dup_id>
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Enhancement</bug_severity>
          <target_milestone>---</target_milestone>
          
          <blocked>86092</blocked>
          <everconfirmed>0</everconfirmed>
          <reporter name="Krzysztof Czech">k.czech</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>gyuyoung.kim</cc>
    
    <cc>gyuyoung.kim</cc>
    
    <cc>lucas.de.marchi</cc>
    
    <cc>rakuco</cc>
    
    <cc>tmpsantos</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>470663</commentid>
    <comment_count>0</comment_count>
    <who name="Krzysztof Czech">k.czech</who>
    <bug_when>2011-09-21 01:52:56 -0700</bug_when>
    <thetext>Support for running unit tests automatically.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>470664</commentid>
    <comment_count>1</comment_count>
      <attachid>108124</attachid>
    <who name="Krzysztof Czech">k.czech</who>
    <bug_when>2011-09-21 01:54:30 -0700</bug_when>
    <thetext>Created attachment 108124
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>470669</commentid>
    <comment_count>2</comment_count>
    <who name="Gyuyoung Kim">gyuyoung.kim</who>
    <bug_when>2011-09-21 02:01:34 -0700</bug_when>
    <thetext>I think it is better to notify this contribution to webkit-dev mailing list first.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>470931</commentid>
    <comment_count>3</comment_count>
      <attachid>108124</attachid>
    <who name="Leandro Pereira">leandro</who>
    <bug_when>2011-09-21 10:53:56 -0700</bug_when>
    <thetext>Comment on attachment 108124
Patch

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

Informal r- for the reasons below.

&gt; Tools/Scripts/run-efl-tests:52
&gt; +sub runTest
&gt; +{
&gt; +    my $args = @_[0];
&gt; +    my $pathToBinary = &quot;Source/Programs/EUnitTests&quot;;
&gt; +    my $utName = &quot;&quot;;
&gt; +    if (length($args) &gt; 0) {
&gt; +        $utName = &quot; --gtest_filter=&quot; . $args . &quot;.*&quot; . &quot;\n&quot;;
&gt; +    }
&gt; +    exit system($pathToBinary . $utName);

My Perl-fu is a bit rusty, but wouldn&apos;t the following be more readable and less prone to escaping problems?

sub runTest { 
  my ($testFilter) = @_;
  my $pathToTestUtility = &apos;Source/Programs/EUnitTests&apos;;
  my @testArgs = ($pathToTestUtility);

  push @testArgs, (&apos;--gtest_filter&apos;, &quot;${testFilter}.*\n&quot;) if $testFilter;  
  return system(@testArgs);
}

&gt; Tools/Scripts/run-efl-tests:57
&gt; +sub usage
&gt; +{
&gt; +    my $programName = basename($0);

Even though this is fine, the common pattern in WebKitPerl is to declare subroutine parameters as such (notice the more descriptive name as well):

sub printUsage
{
   my ($programName) = @_;
   ...
}

&gt; Tools/Scripts/run-efl-tests:64
&gt; +    print STDERR $usageText;

Why is this printed to STDERR?

&gt; Tools/Scripts/run-efl-tests:65
&gt; +    exit 1;

Why does the program return 1 when successfully printing the help output?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>471413</commentid>
    <comment_count>4</comment_count>
    <who name="Krzysztof Czech">k.czech</who>
    <bug_when>2011-09-22 01:01:14 -0700</bug_when>
    <thetext>(In reply to comment #3)
&gt; (From update of attachment 108124 [details])
&gt; View in context: https://bugs.webkit.org/attachment.cgi?id=108124&amp;action=review
&gt; 
&gt; Informal r- for the reasons below.
&gt; 
&gt; &gt; Tools/Scripts/run-efl-tests:52
&gt; &gt; +sub runTest
&gt; &gt; +{
&gt; &gt; +    my $args = @_[0];
&gt; &gt; +    my $pathToBinary = &quot;Source/Programs/EUnitTests&quot;;
&gt; &gt; +    my $utName = &quot;&quot;;
&gt; &gt; +    if (length($args) &gt; 0) {
&gt; &gt; +        $utName = &quot; --gtest_filter=&quot; . $args . &quot;.*&quot; . &quot;\n&quot;;
&gt; &gt; +    }
&gt; &gt; +    exit system($pathToBinary . $utName);
&gt; 
&gt; My Perl-fu is a bit rusty, but wouldn&apos;t the following be more readable and less prone to escaping problems?
&gt; 
&gt; sub runTest { 
&gt;   my ($testFilter) = @_;
&gt;   my $pathToTestUtility = &apos;Source/Programs/EUnitTests&apos;;
&gt;   my @testArgs = ($pathToTestUtility);
&gt; 
&gt;   push @testArgs, (&apos;--gtest_filter&apos;, &quot;${testFilter}.*\n&quot;) if $testFilter;  
&gt;   return system(@testArgs);
&gt; }
&gt; 
Your suggestion is good, I&apos;m bit new to the perl so your Perl-fu is better than mine
&gt; &gt; Tools/Scripts/run-efl-tests:57
&gt; &gt; +sub usage
&gt; &gt; +{
&gt; &gt; +    my $programName = basename($0);
&gt; 
&gt; Even though this is fine, the common pattern in WebKitPerl is to declare subroutine parameters as such (notice the more descriptive name as well):
&gt; 
&gt; sub printUsage
&gt; {
&gt;    my ($programName) = @_;
&gt;    ...
&gt; }
&gt; 
&gt; &gt; Tools/Scripts/run-efl-tests:64
&gt; &gt; +    print STDERR $usageText;
&gt; 
&gt; Why is this printed to STDERR?
Allows stream redirection. &quot;Help&quot; in this context informs the user, that something did wrong.
&gt; 
&gt; &gt; Tools/Scripts/run-efl-tests:65
&gt; &gt; +    exit 1;
&gt; 
&gt; Why does the program return 1 when successfully printing the help output?
Point at, this is a failure situation</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>473100</commentid>
    <comment_count>5</comment_count>
      <attachid>108666</attachid>
    <who name="Krzysztof Czech">k.czech</who>
    <bug_when>2011-09-26 07:49:00 -0700</bug_when>
    <thetext>Created attachment 108666
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>486844</commentid>
    <comment_count>6</comment_count>
      <attachid>108666</attachid>
    <who name="Leandro Pereira">leandro</who>
    <bug_when>2011-10-19 09:31:49 -0700</bug_when>
    <thetext>Comment on attachment 108666
Patch

LGTM.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>528390</commentid>
    <comment_count>7</comment_count>
    <who name="Raphael Kubo da Costa (:rakuco)">rakuco</who>
    <bug_when>2012-01-01 17:20:24 -0800</bug_when>
    <thetext>Coming to think of it again, I wonder if this script is really needed. Wouldn&apos;t using CMake&apos;s infrastructure for tests be enough (ie. running `make test&apos; then runs the unit tests)?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>528453</commentid>
    <comment_count>8</comment_count>
    <who name="Krzysztof Czech">k.czech</who>
    <bug_when>2012-01-02 03:19:19 -0800</bug_when>
    <thetext>I also thought about it. On the other hand, there are already available similar scripts for other ports: run-gtk-tests, run-chromium-webkit-unit-tests, run-api-tests. I&apos;am not sure if this is some kind of convention of adding this kind of scripts. Apart from this we could also use CMake infrastructure.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>528652</commentid>
    <comment_count>9</comment_count>
    <who name="Gyuyoung Kim">gyuyoung.kim</who>
    <bug_when>2012-01-02 20:29:28 -0800</bug_when>
    <thetext>If there is a script for running EFL test, I&apos;m please with it. But, it looks this patch can&apos;t be landed until other patches are landed. In addition, I think you need to notify this patch to webkit-dev. I think you have to get agreement from webkit community or reviewers.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>659465</commentid>
    <comment_count>10</comment_count>
    <who name="Thiago Marcos P. Santos">tmpsantos</who>
    <bug_when>2012-06-28 06:47:50 -0700</bug_when>
    <thetext>I&apos;m not sure if this makes sense anymore. I think it can be done by using CTest and a build target. We don&apos;t have a global runner anymore. See bug 87251.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>661636</commentid>
    <comment_count>11</comment_count>
    <who name="Thiago Marcos P. Santos">tmpsantos</who>
    <bug_when>2012-07-02 11:28:52 -0700</bug_when>
    <thetext>(In reply to comment #10)
&gt; I&apos;m not sure if this makes sense anymore. I think it can be done by using CTest and a build target. We don&apos;t have a global runner anymore. See bug 87251.

Should we close this bug?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>662293</commentid>
    <comment_count>12</comment_count>
    <who name="Thiago Marcos P. Santos">tmpsantos</who>
    <bug_when>2012-07-03 09:21:57 -0700</bug_when>
    <thetext>

*** This bug has been marked as a duplicate of bug 87251 ***</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>662658</commentid>
    <comment_count>13</comment_count>
      <attachid>108666</attachid>
    <who name="Raphael Kubo da Costa (:rakuco)">rakuco</who>
    <bug_when>2012-07-03 21:09:30 -0700</bug_when>
    <thetext>Comment on attachment 108666
Patch

Clearing r? flag from the patch.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>108124</attachid>
            <date>2011-09-21 01:54:30 -0700</date>
            <delta_ts>2011-09-26 07:49:00 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>webkit-efl-unit-tests-run-script.patch</filename>
            <type>text/plain</type>
            <size>2579</size>
            <attacher name="Krzysztof Czech">k.czech</attacher>
            
              <data encoding="base64">ZGlmZiAtLWdpdCBhL1Rvb2xzL0NoYW5nZUxvZyBiL1Rvb2xzL0NoYW5nZUxvZwppbmRleCBmZDcw
MjdiLi5jOGZjZjcwIDEwMDY0NAotLS0gYS9Ub29scy9DaGFuZ2VMb2cKKysrIGIvVG9vbHMvQ2hh
bmdlTG9nCkBAIC0xLDMgKzEsMTYgQEAKKzIwMTEtMDktMjAgIEtyenlzenRvZiBDemVjaCAgPGsu
Y3plY2hAc2Ftc3VuZy5jb20+CisKKyAgICAgICAgW0VGTF0gU2NyaXB0IGZvciBydW5uaW5nIFdl
YktpdC1FRkwgVW5pdCBUZXN0cworICAgICAgICBodHRwczovL2J1Z3Mud2Via2l0Lm9yZy9zaG93
X2J1Zy5jZ2k/aWQ9Njg1MTEKKworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4K
KworICAgICAgICBTdXBwb3J0IGZvciBydW5uaW5nIHVuaXQgdGVzdHMgYXV0b21hdGljYWxseS4K
KworICAgICAgICAqIFNjcmlwdHMvcnVuLWVmbC10ZXN0czogQWRkZWQuCisgICAgICAgIChydW5U
ZXN0KToKKyAgICAgICAgKHVzYWdlKToKKwogMjAxMS0wOS0yMCAgVG9yIEFybmUgVmVzdGLDuCAg
PHRvci5hcm5lLnZlc3Rib0Bub2tpYS5jb20+CiAKICAgICAgICAgV2ViS2l0VGVzdFJ1bm5lcjog
UHJvdmlkZSB1c2FnZSBpZiBydW4gd2l0aG91dCBhcmd1bWVudHMKZGlmZiAtLWdpdCBhL1Rvb2xz
L1NjcmlwdHMvcnVuLWVmbC10ZXN0cyBiL1Rvb2xzL1NjcmlwdHMvcnVuLWVmbC10ZXN0cwpuZXcg
ZmlsZSBtb2RlIDEwMDc1NQppbmRleCAwMDAwMDAwLi5jNWVmYmFlCi0tLSAvZGV2L251bGwKKysr
IGIvVG9vbHMvU2NyaXB0cy9ydW4tZWZsLXRlc3RzCkBAIC0wLDAgKzEsNjYgQEAKKyMhL3Vzci9i
aW4vcGVybAorIyAgICBDb3B5cmlnaHQgKEMpIDIwMTEgU2Ftc3VuZyBFbGVjdHJvbmljcworIwor
IyAgICBUaGlzIGxpYnJhcnkgaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3RyaWJ1dGUg
aXQgYW5kL29yCisjICAgIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBMZXNz
ZXIgR2VuZXJhbCBQdWJsaWMKKyMgICAgTGljZW5zZSBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUg
U29mdHdhcmUgRm91bmRhdGlvbjsgZWl0aGVyCisjICAgIHZlcnNpb24gMi4xIG9mIHRoZSBMaWNl
bnNlLCBvciAoYXQgeW91ciBvcHRpb24pIGFueSBsYXRlciB2ZXJzaW9uLgorIworIyAgICBUaGlz
IGxpYnJhcnkgaXMgZGlzdHJpYnV0ZWQgaW4gdGhlIGhvcGUgdGhhdCBpdCB3aWxsIGJlIHVzZWZ1
bCwKKyMgICAgYnV0IFdJVEhPVVQgQU5ZIFdBUlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxp
ZWQgd2FycmFudHkgb2YKKyMgICAgTUVSQ0hBTlRBQklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFS
VElDVUxBUiBQVVJQT1NFLiBTZWUgdGhlIEdOVQorIyAgICBMZXNzZXIgR2VuZXJhbCBQdWJsaWMg
TGljZW5zZSBmb3IgbW9yZSBkZXRhaWxzLgorIworIyAgICBZb3Ugc2hvdWxkIGhhdmUgcmVjZWl2
ZWQgYSBjb3B5IG9mIHRoZSBHTlUgTGVzc2VyIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKKyMgICAg
YWxvbmcgd2l0aCB0aGlzIGxpYnJhcnk7IGlmIG5vdCwgd3JpdGUgdG8gdGhlIEZyZWUgU29mdHdh
cmUgRm91bmRhdGlvbiwKKyMgICAgSW5jLiwgNTkgVGVtcGxlIFBsYWNlLCBTdWl0ZSAzMzAsIEJv
c3RvbiwgTUEgMDIxMTEtMTMwNyBVU0EKK3VzZSBzdHJpY3Q7Cit1c2UgRmlsZTo6U3BlYzsKK3Vz
ZSBHZXRvcHQ6Okxvbmc7Cit1c2UgRmluZEJpbjsKK3VzZSBsaWIgJEZpbmRCaW46OkJpbjsKK3Vz
ZSB3ZWJraXRkaXJzOworCitteSAkc2hvd0hlbHAgPSAwOworbXkgJHRlc3ROYW1lID0gIiI7CisK
K0dldE9wdGlvbnMoCisgICAgJ2hlbHAnICAgICAgICAgID0+IFwkc2hvd0hlbHAsCisgICAgJ3J8
cnVuLXRlc3Q9cycgID0+IFwkdGVzdE5hbWUsCisgICAgJzw+JyAgICAgICAgICAgID0+IFwmdXNh
Z2UKKykgb3IgdXNhZ2UoKTsKKworaWYgKCRzaG93SGVscCkgeworICAgIHVzYWdlKCk7Cit9CisK
K3NldENvbmZpZ3VyYXRpb24oKTsKKworbXkgJHNvdXJjZVJvb3REaXIgPSBGaWxlOjpTcGVjLT5j
YXRmaWxlKCRGaW5kQmluOjpCaW4sICIuLi8uLiIpOworY2hkaXIoJHNvdXJjZVJvb3REaXIpOwor
CitydW5UZXN0KCR0ZXN0TmFtZSk7CisKK3N1YiBydW5UZXN0Cit7CisgICAgbXkgJGFyZ3MgPSBA
X1swXTsKKyAgICBteSAkcGF0aFRvQmluYXJ5ID0gIlNvdXJjZS9Qcm9ncmFtcy9FVW5pdFRlc3Rz
IjsKKyAgICBteSAkdXROYW1lID0gIiI7CisgICAgaWYgKGxlbmd0aCgkYXJncykgPiAwKSB7Cisg
ICAgICAgICR1dE5hbWUgPSAiIC0tZ3Rlc3RfZmlsdGVyPSIgLiAkYXJncyAuICIuKiIgLiAiXG4i
OworICAgIH0KKyAgICBleGl0IHN5c3RlbSgkcGF0aFRvQmluYXJ5IC4gJHV0TmFtZSk7Cit9CisK
K3N1YiB1c2FnZQoreworICAgIG15ICRwcm9ncmFtTmFtZSA9IGJhc2VuYW1lKCQwKTsKKyAgICBt
eSAkdXNhZ2VUZXh0ID0gPDxFT0Y7CisgICAgVXNhZ2U6ICRwcm9ncmFtTmFtZSBbb3B0aW9uc10K
KyAgICAtLWhlbHAgICAgICBTaG93IGhlbHAgbWVzc2FnZQorICAgIC1yfC0tcnVuLXRlc3QgIFJ1
biBwYXJ0aWN1bGFyIHRlc3QKK0VPRgorCisgICAgcHJpbnQgU1RERVJSICR1c2FnZVRleHQ7Cisg
ICAgZXhpdCAxOworfQo=
</data>
<flag name="review"
          id="105017"
          type_id="1"
          status="-"
          setter="leandro"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>108666</attachid>
            <date>2011-09-26 07:49:00 -0700</date>
            <delta_ts>2012-07-03 21:09:30 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>webkit-efl-unit-tests-run-script.patch</filename>
            <type>text/plain</type>
            <size>2578</size>
            <attacher name="Krzysztof Czech">k.czech</attacher>
            
              <data encoding="base64">ZGlmZiAtLWdpdCBhL1Rvb2xzL0NoYW5nZUxvZyBiL1Rvb2xzL0NoYW5nZUxvZwppbmRleCBmZDcw
MjdiLi4wMzBmOTRmIDEwMDY0NAotLS0gYS9Ub29scy9DaGFuZ2VMb2cKKysrIGIvVG9vbHMvQ2hh
bmdlTG9nCkBAIC0xLDMgKzEsMTYgQEAKKzIwMTEtMDktMjAgIEtyenlzenRvZiBDemVjaCAgPGsu
Y3plY2hAc2Ftc3VuZy5jb20+CisKKyAgICAgICAgW0VGTF0gU2NyaXB0IGZvciBydW5uaW5nIFdl
YktpdC1FRkwgVW5pdCBUZXN0cworICAgICAgICBodHRwczovL2J1Z3Mud2Via2l0Lm9yZy9zaG93
X2J1Zy5jZ2k/aWQ9Njg1MTEKKworICAgICAgICBTdXBwb3J0IGZvciBydW5uaW5nIHVuaXQgdGVz
dHMgYXV0b21hdGljYWxseS4KKworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4K
KworICAgICAgICAqIFNjcmlwdHMvcnVuLWVmbC10ZXN0czogQWRkZWQuCisgICAgICAgIChydW5U
ZXN0KToKKyAgICAgICAgKHVzYWdlKToKKwogMjAxMS0wOS0yMCAgVG9yIEFybmUgVmVzdGLDuCAg
PHRvci5hcm5lLnZlc3Rib0Bub2tpYS5jb20+CiAKICAgICAgICAgV2ViS2l0VGVzdFJ1bm5lcjog
UHJvdmlkZSB1c2FnZSBpZiBydW4gd2l0aG91dCBhcmd1bWVudHMKZGlmZiAtLWdpdCBhL1Rvb2xz
L1NjcmlwdHMvcnVuLWVmbC10ZXN0cyBiL1Rvb2xzL1NjcmlwdHMvcnVuLWVmbC10ZXN0cwpuZXcg
ZmlsZSBtb2RlIDEwMDc1NQppbmRleCAwMDAwMDAwLi5iMGViZjlhCi0tLSAvZGV2L251bGwKKysr
IGIvVG9vbHMvU2NyaXB0cy9ydW4tZWZsLXRlc3RzCkBAIC0wLDAgKzEsNjUgQEAKKyMhL3Vzci9i
aW4vcGVybAorIyAgICBDb3B5cmlnaHQgKEMpIDIwMTEgU2Ftc3VuZyBFbGVjdHJvbmljcworIwor
IyAgICBUaGlzIGxpYnJhcnkgaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3RyaWJ1dGUg
aXQgYW5kL29yCisjICAgIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBMZXNz
ZXIgR2VuZXJhbCBQdWJsaWMKKyMgICAgTGljZW5zZSBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUg
U29mdHdhcmUgRm91bmRhdGlvbjsgZWl0aGVyCisjICAgIHZlcnNpb24gMi4xIG9mIHRoZSBMaWNl
bnNlLCBvciAoYXQgeW91ciBvcHRpb24pIGFueSBsYXRlciB2ZXJzaW9uLgorIworIyAgICBUaGlz
IGxpYnJhcnkgaXMgZGlzdHJpYnV0ZWQgaW4gdGhlIGhvcGUgdGhhdCBpdCB3aWxsIGJlIHVzZWZ1
bCwKKyMgICAgYnV0IFdJVEhPVVQgQU5ZIFdBUlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxp
ZWQgd2FycmFudHkgb2YKKyMgICAgTUVSQ0hBTlRBQklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFS
VElDVUxBUiBQVVJQT1NFLiBTZWUgdGhlIEdOVQorIyAgICBMZXNzZXIgR2VuZXJhbCBQdWJsaWMg
TGljZW5zZSBmb3IgbW9yZSBkZXRhaWxzLgorIworIyAgICBZb3Ugc2hvdWxkIGhhdmUgcmVjZWl2
ZWQgYSBjb3B5IG9mIHRoZSBHTlUgTGVzc2VyIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKKyMgICAg
YWxvbmcgd2l0aCB0aGlzIGxpYnJhcnk7IGlmIG5vdCwgd3JpdGUgdG8gdGhlIEZyZWUgU29mdHdh
cmUgRm91bmRhdGlvbiwKKyMgICAgSW5jLiwgNTkgVGVtcGxlIFBsYWNlLCBTdWl0ZSAzMzAsIEJv
c3RvbiwgTUEgMDIxMTEtMTMwNyBVU0EKK3VzZSBzdHJpY3Q7Cit1c2UgRmlsZTo6U3BlYzsKK3Vz
ZSBHZXRvcHQ6Okxvbmc7Cit1c2UgRmluZEJpbjsKK3VzZSBsaWIgJEZpbmRCaW46OkJpbjsKK3Vz
ZSB3ZWJraXRkaXJzOworCitteSAkc2hvd0hlbHAgPSAwOworbXkgJHRlc3ROYW1lID0gIiI7CisK
K0dldE9wdGlvbnMoCisgICAgJ2hlbHAnICAgICAgICAgID0+IFwkc2hvd0hlbHAsCisgICAgJ3J8
cnVuLXRlc3Q9cycgID0+IFwkdGVzdE5hbWUsCisgICAgJzw+JyAgICAgICAgICAgID0+IFwmdXNh
Z2UKKykgb3IgdXNhZ2UoKTsKKworaWYgKCRzaG93SGVscCkgeworICAgIHVzYWdlKCk7Cit9CisK
K3NldENvbmZpZ3VyYXRpb24oKTsKKworbXkgJHNvdXJjZVJvb3REaXIgPSBGaWxlOjpTcGVjLT5j
YXRmaWxlKCRGaW5kQmluOjpCaW4sICIuLi8uLiIpOworY2hkaXIoJHNvdXJjZVJvb3REaXIpOwor
CitydW5UZXN0KCR0ZXN0TmFtZSk7CisKK3N1YiBydW5UZXN0Cit7CisgICAgbXkgKCR0ZXN0Rmls
dGVyKSA9IEBfOworICAgIG15ICRwYXRoVG9UZXN0VXRpbGl0eSA9ICJTb3VyY2UvUHJvZ3JhbXMv
RVVuaXRUZXN0cyI7CisgICAgbXkgQHRlc3RBcmdzID0gKCRwYXRoVG9UZXN0VXRpbGl0eSk7Cisg
ICAgcHVzaCBAdGVzdEFyZ3MsICgiIC0tZ3Rlc3RfZmlsdGVyPSR7dGVzdEZpbHRlcn0uKlxuIikg
aWYgJHRlc3RGaWx0ZXI7CisKKyAgICByZXR1cm4gc3lzdGVtKCJAdGVzdEFyZ3MiKTsKK30KKwor
c3ViIHVzYWdlCit7CisgICAgbXkgJHByb2dyYW1OYW1lID0gYmFzZW5hbWUoJDApOworICAgIG15
ICR1c2FnZVRleHQgPSA8PEVPRjsKKyAgICBVc2FnZTogJHByb2dyYW1OYW1lIFtvcHRpb25zXQor
ICAgIC0taGVscCAgICAgIFNob3cgaGVscCBtZXNzYWdlCisgICAgLXJ8LS1ydW4tdGVzdCAgUnVu
IHBhcnRpY3VsYXIgdGVzdAorRU9GCisKKyAgICBwcmludCBTVERFUlIgJHVzYWdlVGV4dDsKKyAg
ICBleGl0IDE7Cit9Cg==
</data>

          </attachment>
      

    </bug>

</bugzilla>