<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:40:09 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Whamcloud Community JIRA</title>
    <link>https://jira.whamcloud.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.4.14</version>
        <build-number>940014</build-number>
        <build-date>05-12-2023</build-date>
    </build-info>


<item>
            <title>[LU-11010] Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites</title>
                <link>https://jira.whamcloud.com/browse/LU-11010</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;With the patch for &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10461&quot; title=&quot;sanity 77c failure due to variables called in cleanup routine are out of scope&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10461&quot;&gt;&lt;del&gt;LU-10461&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://review.whamcloud.com/30964&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30964&lt;/a&gt;, a call to exit was included in skip() and a skip_noexit() routine was created. &lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;5776 skip_noexit() {
5777         echo
5778         log &lt;span class=&quot;code-quote&quot;&gt;&quot; SKIP: $TESTSUITE $TESTNAME $@&quot;&lt;/span&gt;
5779 
5780         &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; [[ -n &lt;span class=&quot;code-quote&quot;&gt;&quot;$ALWAYS_SKIPPED&quot;&lt;/span&gt; ]]; then
5781                 skip_logged $TESTNAME &lt;span class=&quot;code-quote&quot;&gt;&quot;$@&quot;&lt;/span&gt;
5782         &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;
5783                 mkdir -p $LOGDIR
5784                 echo &lt;span class=&quot;code-quote&quot;&gt;&quot;$@&quot;&lt;/span&gt; &amp;gt; $LOGDIR/skip
5785         fi
5786 
5787         [[ -n &lt;span class=&quot;code-quote&quot;&gt;&quot;$TESTSUITELOG&quot;&lt;/span&gt; ]] &amp;amp;&amp;amp;
5788                 echo &lt;span class=&quot;code-quote&quot;&gt;&quot;$TESTSUITE: SKIP: $TESTNAME $@&quot;&lt;/span&gt; &amp;gt;&amp;gt; $TESTSUITELOG || &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
5789 }
5790 
5791 skip() {
5792         skip_noexit
5793         exit 0
5794 }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Tests that have calls to skip() or skip_env() should be reviewed to see if they should be converted to skip_noexit() or remove the call to return that follows the call to skip.&lt;/p&gt;
</description>
                <environment></environment>
        <key id="52200">LU-11010</key>
            <summary>Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="jamesanunez">James Nunez</assignee>
                                    <reporter username="jamesanunez">James Nunez</reporter>
                        <labels>
                            <label>test_script_improvements</label>
                            <label>tests</label>
                    </labels>
                <created>Wed, 9 May 2018 22:03:17 +0000</created>
                <updated>Mon, 8 Apr 2019 14:20:02 +0000</updated>
                            <resolved>Sun, 3 Mar 2019 14:39:50 +0000</resolved>
                                                    <fixVersion>Lustre 2.13.0</fixVersion>
                    <fixVersion>Lustre 2.10.7</fixVersion>
                    <fixVersion>Lustre 2.12.1</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                            <comments>
                            <comment id="227607" author="gerrit" created="Wed, 9 May 2018 22:15:30 +0000"  >&lt;p&gt;James Nunez (james.a.nunez@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/32346&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/32346&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove calls to return after skip()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 85e9357214cab57c411bca9d75deb200a75ccb3d&lt;/p&gt;</comment>
                            <comment id="228729" author="gerrit" created="Tue, 29 May 2018 04:54:56 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/32346/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/32346/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove calls to return after skip()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ea76de56fccfdc6f8bd0087adc36c19257e414d3&lt;/p&gt;</comment>
                            <comment id="228747" author="pjones" created="Tue, 29 May 2018 10:57:54 +0000"  >&lt;p&gt;Landed for 2.12&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="229735" author="jamesanunez" created="Tue, 26 Jun 2018 15:34:15 +0000"  >&lt;p&gt;There are many test suites that still call return() after skip(). All of these call need to be reviewed and determined if we can just remove the return call or need to call skip_noexit() or some other action.&lt;/p&gt;</comment>
                            <comment id="231124" author="gerrit" created="Mon, 30 Jul 2018 22:24:53 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/32731/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/32731/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove calls to return after skip()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: bf19f7a4fa6970f57bfe922461cfae7a3e80f89c&lt;/p&gt;</comment>
                            <comment id="233583" author="gerrit" created="Sun, 16 Sep 2018 06:41:59 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/32732/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/32732/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove calls to return after skip()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a72a949be47fc317de5d1cbcde7d79a5dad91e64&lt;/p&gt;</comment>
                            <comment id="233591" author="pjones" created="Sun, 16 Sep 2018 13:39:58 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.whamcloud.com/secure/ViewProfile.jspa?name=jamesanunez&quot; class=&quot;user-hover&quot; rel=&quot;jamesanunez&quot;&gt;jamesanunez&lt;/a&gt; so is that the lot now?&lt;/p&gt;</comment>
                            <comment id="234213" author="jamesanunez" created="Tue, 2 Oct 2018 14:26:03 +0000"  >&lt;p&gt;Two more patches need a little work and need to land to finish up this work;&lt;br/&gt;
&lt;a href=&quot;https://review.whamcloud.com/#/c/32735/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/32735/&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://review.whamcloud.com/#/c/32733/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/32733/&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="235310" author="gerrit" created="Tue, 23 Oct 2018 05:16:56 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/32733/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/32733/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove calls to return after skip()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e2226ae35978f223bf851dabf15eb6b606da8020&lt;/p&gt;</comment>
                            <comment id="241490" author="gerrit" created="Wed, 6 Feb 2019 19:21:41 +0000"  >&lt;p&gt;James Nunez (jnunez@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34199&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34199&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove calls to return after skip()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 37a672a7f209ab5c9a8e7dfc051ac4ea9a254355&lt;/p&gt;</comment>
                            <comment id="242025" author="gerrit" created="Fri, 15 Feb 2019 01:28:18 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34199/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34199/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove calls to return after skip()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f8bb7b1a04543de759b863ee06cfccb83d908856&lt;/p&gt;</comment>
                            <comment id="243240" author="gerrit" created="Sun, 3 Mar 2019 00:20:52 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/32735/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/32735/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove return after skip for conf-sanity&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 915b16cf1278026a9f914f268e8cdfb578d929c4&lt;/p&gt;</comment>
                            <comment id="243260" author="pjones" created="Sun, 3 Mar 2019 14:39:50 +0000"  >&lt;p&gt;Landed for 2.13&lt;/p&gt;</comment>
                            <comment id="245034" author="gerrit" created="Mon, 1 Apr 2019 15:27:44 +0000"  >&lt;p&gt;Minh Diep (mdiep@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34565&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34565&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove return after skip for conf-sanity&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_12&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c6a6c3f98646b4a20880453b5e3376dc2682eff5&lt;/p&gt;</comment>
                            <comment id="245376" author="gerrit" created="Mon, 8 Apr 2019 06:28:26 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34565/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34565/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11010&quot; title=&quot;Remove call to &#8216;return&#8217; after call to &#8216;skip&#8217; in Lustre test suites&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11010&quot;&gt;&lt;del&gt;LU-11010&lt;/del&gt;&lt;/a&gt; tests: remove return after skip for conf-sanity&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_12&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: cd8a8949ba6d618394ec4ac3db60e41b8943ed8f&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="50057">LU-10461</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzzx0v:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>