All of lore.kernel.org
 help / color / mirror / Atom feed
From: DAN LI <li.dan@cn.fujitsu.com>
To: Caspar Zhang <caspar@casparzhang.com>
Cc: LTP list <ltp-list@lists.sourceforge.net>
Subject: Re: [LTP] [PATCH v2] shmget/shmget01.c: cleanup
Date: Tue, 04 Jun 2013 16:53:35 +0800	[thread overview]
Message-ID: <51ADAB0F.7060802@cn.fujitsu.com> (raw)
In-Reply-To: <51AD95E8.9000002@casparzhang.com>

On 06/04/2013 03:23 PM, Caspar Zhang wrote:
> On 06/04/2013 10:50 AM, DAN LI wrote:
>> 1. Remove useless comments
>>
>> 2. Revise code to follow ltp-code-style
>>
>> Signed-off-by: DAN LI <li.dan@cn.fujitsu.com>
> 
> overall looks good to me, yet I think there are some more comments could be removed. like:
> 
> 
> /* if we get here, everything looks good */
> 
> and
> 
> 108                 /*
> 109                  * clean up things in case we are looping
> 110                  */
> 
> Thoughts?
> 

Agree.

DAN LI

> Caspar
> 
>> ---
>>   testcases/kernel/syscalls/ipc/shmget/shmget01.c |   86 ++++++-----------------
>>   1 files changed, 21 insertions(+), 65 deletions(-)
>>
>> diff --git a/testcases/kernel/syscalls/ipc/shmget/shmget01.c b/testcases/kernel/syscalls/ipc/shmget/shmget01.c
>> index 38dbee7..aa2c78b 100644
>> --- a/testcases/kernel/syscalls/ipc/shmget/shmget01.c
>> +++ b/testcases/kernel/syscalls/ipc/shmget/shmget01.c
>> @@ -1,20 +1,19 @@
>>   /*
>> + * Copyright (c) International Business Machines  Corp., 2001
>>    *
>> - *   Copyright (c) International Business Machines  Corp., 2001
>> + * This program is free software;  you can redistribute it and/or modify
>> + * it under the terms of the GNU General Public License as published by
>> + * the Free Software Foundation; either version 2 of the License, or
>> + * (at your option) any later version.
>>    *
>> - *   This program is free software;  you can redistribute it and/or modify
>> - *   it under the terms of the GNU General Public License as published by
>> - *   the Free Software Foundation; either version 2 of the License, or
>> - *   (at your option) any later version.
>> + * This program is distributed in the hope that it will be useful,
>> + * but WITHOUT ANY WARRANTY;  without even the implied warranty of
>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
>> + * the GNU General Public License for more details.
>>    *
>> - *   This program is distributed in the hope that it will be useful,
>> - *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
>> - *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
>> - *   the GNU General Public License for more details.
>> - *
>> - *   You should have received a copy of the GNU General Public License
>> - *   along with this program;  if not, write to the Free Software
>> - *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
>> + * You should have received a copy of the GNU General Public License
>> + * along with this program;  if not, write to the Free Software
>> + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
>>    */
>>
>>   /*
>> @@ -33,27 +32,12 @@
>>    *      if doing functionality testing
>>    *        stat the shared memory resource
>>    *        check the size, creator pid and mode
>> - *          if correct,
>> + *        if correct,
>>    *            issue a PASS message
>>    *        otherwise
>>    *            issue a FAIL message
>>    *      else issue a PASS message
>>    *    call cleanup
>> - *
>> - * USAGE:  <for command-line>
>> - *  shmget01 [-c n] [-f] [-i n] [-I x] [-P x] [-t]
>> - *     where,  -c n : Run n copies concurrently.
>> - *             -f   : Turn off functionality Testing.
>> - *           -i n : Execute test n times.
>> - *           -I x : Execute test for x seconds.
>> - *           -P x : Pause for x seconds between iterations.
>> - *           -t   : Turn on syscall timing.
>> - *
>> - * HISTORY
>> - *    03/2001 - Written by Wayne Boyer
>> - *
>> - * RESTRICTIONS
>> - *    none
>>    */
>>
>>   #include "ipcshm.h"
>> @@ -61,31 +45,24 @@
>>   char *TCID = "shmget01";
>>   int TST_TOTAL = 1;
>>
>> -int shm_id_1 = -1;
>> +static int shm_id_1 = -1;
>>
>> -int main(int ac, char **av)
>> +int main(int argc, char *argv[])
>>   {
>>       int lc;
>>       char *msg;
>>       struct shmid_ds buf;
>>
>> -    if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
>> +    msg = parse_opts(argc, argv, NULL, NULL);
>> +    if (msg != NULL)
>>           tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
>> -    }
>>
>> -    setup();        /* global setup */
>> -
>> -    /* The following loop checks looping state if -i option given */
>> +    setup();
>>
>>       for (lc = 0; TEST_LOOPING(lc); lc++) {
>> -        /* reset tst_count in case we are looping */
>>           tst_count = 0;
>>
>> -        /*
>> -         * Use TEST macro to make the call
>> -         */
>> -
>> -        TEST(shmget(shmkey, SHM_SIZE, (IPC_CREAT | IPC_EXCL | SHM_RW)));
>> +        TEST(shmget(shmkey, SHM_SIZE, IPC_CREAT | IPC_EXCL | SHM_RW));
>>
>>           if (TEST_RETURN == -1) {
>>               tst_resm(TFAIL, "%s call failed - errno = %d : %s",
>> @@ -131,11 +108,10 @@ int main(int ac, char **av)
>>           /*
>>            * clean up things in case we are looping
>>            */
>> -        if (shmctl(shm_id_1, IPC_RMID, NULL) == -1) {
>> +        if (shmctl(shm_id_1, IPC_RMID, NULL) == -1)
>>               tst_resm(TBROK, "couldn't remove shared memory");
>> -        } else {
>> +        else
>>               shm_id_1 = -1;
>> -        }
>>       }
>>
>>       cleanup();
>> @@ -143,42 +119,22 @@ int main(int ac, char **av)
>>       tst_exit();
>>   }
>>
>> -/*
>> - * setup() - performs all the ONE TIME setup for this test.
>> - */
>>   void setup(void)
>>   {
>> -
>>       tst_sig(NOFORK, DEF_HANDLER, cleanup);
>>
>>       TEST_PAUSE;
>>
>> -    /*
>> -     * Create a temporary directory and cd into it.
>> -     * This helps to ensure that a unique msgkey is created.
>> -     * See ../lib/libipc.c for more information.
>> -     */
>>       tst_tmpdir();
>>
>> -    /* get an IPC resource key */
>>       shmkey = getipckey();
>>   }
>>
>> -/*
>> - * cleanup() - performs all the ONE TIME cleanup for this test at completion
>> - *            or premature exit.
>> - */
>>   void cleanup(void)
>>   {
>> -    /* if it exists, remove the shared memory resource */
>>       rm_shm(shm_id_1);
>>
>>       tst_rmdir();
>>
>> -    /*
>> -     * print timing stats if that option was specified.
>> -     * print errno log if that option was specified.
>> -     */
>>       TEST_CLEANUP;
>> -
>>   }
>>
> 
> 



------------------------------------------------------------------------------
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

      reply	other threads:[~2013-06-04  8:56 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-04  2:50 [LTP] [PATCH v2] shmget/shmget01.c: cleanup DAN LI
2013-06-04  2:53 ` [LTP] [PATCH v2] shmget/shmget01.c: attach SHM_NORESERVE to shmflg DAN LI
2013-06-04  7:23 ` [LTP] [PATCH v2] shmget/shmget01.c: cleanup Caspar Zhang
2013-06-04  8:53   ` DAN LI [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=51ADAB0F.7060802@cn.fujitsu.com \
    --to=li.dan@cn.fujitsu.com \
    --cc=caspar@casparzhang.com \
    --cc=ltp-list@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.