<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:05:35 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-288] In tree single node testing uses installed lustre binaries by default, not in tree binaries.</title>
                <link>https://jira.whamcloud.com/browse/LU-288</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Not sure if this is done by design or not, but when running the single node test from within the lustre source tree the installed binaries are used by default; not the binaries in the lustre tree.&lt;/p&gt;

&lt;p&gt;For example, running sanity.sh will pick up /usr/bin/lfs and use that binary if it exists (or another lfs found in $PATH I would assume) instead of $LUSTRE/lustre/utils/lfs.&lt;/p&gt;

&lt;p&gt;Personally, I find this a bit confusing and frustrating at times. Say, I am working on the lfs command. If I make a change, recompile and run sanity.sh; this new patched version will not be used if there is a version that is already installed. It takes manual intervention to get the test to use my patched version (i.e. running &apos;export LFS=$LUSTRE/lustre/utils/lfs&apos;).&lt;/p&gt;

&lt;p&gt;Is this by design?&lt;/p&gt;</description>
                <environment></environment>
        <key id="10760">LU-288</key>
            <summary>In tree single node testing uses installed lustre binaries by default, not in tree binaries.</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="bobijam">Zhenyu Xu</assignee>
                                    <reporter username="prakash">Prakash Surya</reporter>
                        <labels>
                    </labels>
                <created>Fri, 6 May 2011 11:28:03 +0000</created>
                <updated>Sat, 4 Jun 2011 05:44:08 +0000</updated>
                            <resolved>Sat, 4 Jun 2011 05:44:08 +0000</resolved>
                                    <version>Lustre 2.1.0</version>
                                    <fixVersion>Lustre 2.1.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                            <comments>
                            <comment id="13912" author="adilger" created="Fri, 6 May 2011 15:10:05 +0000"  >&lt;p&gt;It definitely makes sense to use the binaries from the current build tree, if the tests are being run from there.  I prefer to do this by prepending the right path to $PATH, instead of forcing all scripts to explicitly specify the full pathname to each tool.  Using PATH means all scripts will be fixed, while forcing a full path for every call means a lot of effort to fix the problem, and ongoing opportunity to break the testing if some new usage of &quot;lfs&quot; is in place of a fully-qualified &quot;$LFS&quot; or similar.&lt;/p&gt;

&lt;p&gt;Of related interest is fixing bug 18057 (see &lt;a href=&quot;https://bugzilla.lustre.org/show_bug.cgi?id=18057#c17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://bugzilla.lustre.org/show_bug.cgi?id=18057#c17&lt;/a&gt;), which is related to this.  Testing from the build tree will overwrite /sbin/mount.lustre, which is usually not fatal, but is wrong and can cause testing to fail in some cases.&lt;/p&gt;</comment>
                            <comment id="13913" author="prakash" created="Fri, 6 May 2011 16:14:49 +0000"  >&lt;blockquote&gt;
&lt;p&gt;I prefer to do this by prepending the right path to $PATH, instead of forcing all scripts to explicitly specify the full pathname to each tool.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Agreed. So essentially the code in test-framework.sh (and possibly elsewhere) could be changed from:&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;&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; ! echo $PATH | grep -q $LUSTRE/utils; then
        export PATH=$PATH:$LUSTRE/utils
fi
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;to:&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;&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; ! echo $PATH | grep -q $LUSTRE/utils; then
        export PATH=$LUSTRE/utils:$PATH
fi
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Or am I missing something?&lt;/p&gt;

&lt;p&gt;I think the shell&apos;s command lookup hash may have to be updated as well.&lt;/p&gt;</comment>
                            <comment id="13994" author="pjones" created="Mon, 9 May 2011 05:28:52 +0000"  >&lt;p&gt;Bobijam&lt;/p&gt;

&lt;p&gt;Could you please look into this one?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="14016" author="prakash" created="Mon, 9 May 2011 09:01:46 +0000"  >&lt;blockquote&gt;
&lt;p&gt;Of related interest is fixing bug 18057 (see &lt;a href=&quot;https://bugzilla.lustre.org/show_bug.cgi?id=18057#c17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://bugzilla.lustre.org/show_bug.cgi?id=18057#c17&lt;/a&gt;), which is related to this. Testing from the build tree will overwrite /sbin/mount.lustre, which is usually not fatal, but is wrong and can cause testing to fail in some cases.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;In our environment, we&apos;re booting diskless nodes and the rootfs is mounted readonly. So cp&apos;ing mount.lustre acutally fails in that case. Thus, we have to have a version already installed to run the tests.&lt;/p&gt;

&lt;p&gt;I can&apos;t seem to access bugzilla.lustre.org right now, but from what I remember from reading into it on Friday it seems the big hangup has to do with handling the &apos;&amp;#45;o loop&apos; option. Does it make sense to simply use the &apos;--bind&apos; mount option and mount the executable in /sbin? And then umount it after the test completes?&lt;/p&gt;

&lt;p&gt;i.e.&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;# Rather than cp use the following..
mount --bind $LUSTRE/lustre/utils/mount.lustre /sbin/mount.lustre

# And unmount after tests are run
umount /sbin/mount.lustre
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Although, I haven&apos;t done any real testing to see if this would actually work.&lt;/p&gt;</comment>
                            <comment id="14076" author="bobijam" created="Tue, 10 May 2011 00:18:44 +0000"  >&lt;p&gt;tried the bind mount, and it works.&lt;/p&gt;

&lt;p&gt;patch tracking at &lt;a href=&quot;http://review.whamcloud.com/525&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/525&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="15527" author="hudson" created="Fri, 3 Jun 2011 18:29:42 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15530" author="hudson" created="Fri, 3 Jun 2011 18:29:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15533" author="hudson" created="Fri, 3 Jun 2011 18:31:16 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15536" author="hudson" created="Fri, 3 Jun 2011 18:31:48 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15539" author="hudson" created="Fri, 3 Jun 2011 18:32:57 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15542" author="hudson" created="Fri, 3 Jun 2011 18:47:29 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15545" author="hudson" created="Fri, 3 Jun 2011 18:48:22 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15548" author="hudson" created="Fri, 3 Jun 2011 18:50:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=ofa/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,ofa #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15551" author="hudson" created="Fri, 3 Jun 2011 18:52:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15554" author="hudson" created="Fri, 3 Jun 2011 18:53:06 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15557" author="hudson" created="Fri, 3 Jun 2011 19:02:29 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15560" author="hudson" created="Fri, 3 Jun 2011 19:08:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15563" author="hudson" created="Fri, 3 Jun 2011 19:18:28 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15566" author="hudson" created="Fri, 3 Jun 2011 19:31:20 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15569" author="hudson" created="Fri, 3 Jun 2011 19:47:32 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #150&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-288&quot; title=&quot;In tree single node testing uses installed lustre binaries by default, not in tree binaries.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-288&quot;&gt;&lt;del&gt;LU-288&lt;/del&gt;&lt;/a&gt; adjust PATH order in test framework&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1eaf5c9a838b75faca8c3f61bffb1ff51192a2d0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/test-framework.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15575" author="bobijam" created="Sat, 4 Jun 2011 05:44:08 +0000"  >&lt;p&gt;has been landed on master&lt;/p&gt;</comment>
                    </comments>
                    <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|hzv92f:</customfieldvalue>

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