On Fri, Oct 30, 2009 at 5:19 AM, Subrata Modak
<[email protected]> wrote:
> On Fri, 2009-10-30 at 13:53 +0100, Jiří Paleček wrote:
>> On Fri, 30 Oct 2009 12:37:48 +0100, Subrata Modak
>> <[email protected]> wrote:
>>
>> > On Thu, 2009-10-29 at 18:12 +0000, JiříPaleček wrote:
>> >> Hello,
>> >>
>> >> Subrata Modak <subr...@...> writes:
>> >>
>> >> >
>> >> > On Wed, 2009-10-21 at 02:19 +0200, Jiri Palecek wrote:
>> >> > > Hello,
>> >> > >
>> >> > > this is another patch fixing bashisms in LTP tests (the fixes are
>> >> more or
>> >> less the same as in the previous
>> >> > patches, except for a few exceptions). Note that the patch is not
>> >> complete,
>> >> in the sense that there may
>> >> > remain further bashisms in the source even after applying the patch
>> >> (like use
>> >> of arrays, which is visible
>> >> > even from this patch).
>> >> > >
>> >> > > Regards
>> >> > >     Jiri Palecek
>> >> > >
>> >> > > Signed-off-by: Jiri Palecek <jpale...@...>
>> >> >
>> >> > Hmm,. Some of them failed to apply. Can you please resend only the
>> >> error
>> >> > part(s):
>> >> >
>> >>
>> >> according to my git repository. these are the missing parts:
>> >>
>> >> Signed-off-by: Jiri Palecek <[email protected]>
>> >
>> > Then something wrong with my CVS:
>> >
>> > patching file testcases/kernel/fs/fs-bench/modaltr.sh
>> > Hunk #1 FAILED at 43.
>> > 1 out of 1 hunk FAILED -- saving rejects to file
>> > testcases/kernel/fs/fs-bench/modaltr.sh.rej
>> > patching file testcases/kernel/fs/mongo/test.sh
>> > Hunk #1 FAILED at 26.
>> > Hunk #2 FAILED at 52.
>> > Hunk #3 FAILED at 70.
>> > 3 out of 3 hunks FAILED -- saving rejects to file
>> > testcases/kernel/fs/mongo/test.sh.rej
>> > patching file testcases/network/tcp_cmds/netstat/netstat01
>> >
>> > Can you please verify ?
>>
>> It works for me in CVS, so I guess it was just a linewrap, whitespace or
>> something issue. See attachment for the original (uncrippled) patch.
>
> Yes, it works fine now :-)
> patching file testcases/kernel/fs/fs-bench/modaltr.sh
> patching file testcases/kernel/fs/mongo/test.sh
> patching file testcases/network/tcp_cmds/netstat/netstat01

Sorry for replying late again, but just for future reference, there's
a function called is_root in $(abs_top_srcdir)/testcases/lib/cmdlib.sh
[in the install tree -- it gets put in
$(abs_top_builddir)/testcases/bin] that can be leveraged s.t. you
don't have to do $(id -ru) -eq 0 everywhere. There are some other
handy constructs and functions too that can be used for expediting
setup, execution, and teardown. The only thing that might be a
detractor for some legacy scripts is that I explicitly did set -u to
avoid QA issues with unset variables, so all variables must be defined
before including the cmd library.

Using that script though would be helpful as it cuts down on a lot of
duplicate code and aims to be completely POSIX compliant. Some other
pluses:

1. incr_tst_count - increments $TST_COUNT appropriately.
2. TCID is automatically set if not already provided.
3. exists is a function which ensures that commands exist on a given
system before executing a test.
4. Common SHELL_DEBUG logic.

Just trying to make life a little easier for test writers and
maintainers if possible :]...

Cheers,
-Garrett

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to