[LTP] [PATCH v2] Clean up hugemmap02 testcase
Shuang Qiu
shuang.qiu@oracle.com
Wed Feb 17 09:20:50 CET 2016
On 02/10/2016 08:31 PM, Cyril Hrubis wrote:
> Hi!
>> #if __WORDSIZE == 64 /* 64-bit process */
>> - if (addr2 == MAP_FAILED) {
>> + if (addr2 == MAP_FAILED)
>> tst_resm(TFAIL | TERRNO, "huge mmap failed unexpectedly"
>> " with %s (64-bit)", TEMPFILE);
>> - close(fildes);
>> - continue;
>> - } else {
>> + else {
>> tst_resm(TPASS, "huge mmap succeeded (64-bit)");
>> }
>> #else /* 32-bit process */
>> if (addr2 == MAP_FAILED)
>> tst_resm(TFAIL | TERRNO, "huge mmap failed unexpectedly"
>> " with %s (32-bit)", TEMPFILE);
>> - else if (addr2 > 0) {
>> + else if (addr2 > 0)
>> tst_resm(TCONF,
>> "huge mmap failed to test the scenario");
>> - close(fildes);
>> - continue;
>> - } else if (addr == 0)
>> + else if (addr == 0)
>> tst_resm(TPASS, "huge mmap succeeded (32-bit)");
> The LKML coding style says that we should add curly braces to both else
> branches if they are around one of them. Or if the function call after
> if spans across more lines. So please do not remove them.
Thanks for review and correct me it.
Will send a new one.
Thanks
Shuang
>
> Otherwise the change looks good.
>
More information about the Ltp
mailing list