From: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
To: subrata@linux.vnet.ibm.com
Cc: mohankumar@in.ibm.com, ssant@in.ibm.com,
sukadev@linux.vnet.ibm.com, ltp-list@lists.sf.net
Subject: [LTP] [PATCH] pidns17 testcase bugfix/cleanup
Date: Wed, 17 Jun 2009 16:26:03 -0700 [thread overview]
Message-ID: <20090617232603.GA27168@us.ibm.com> (raw)
Fix minor bugs in the test case that cause the test to fail intermittently.
Also, print more debug info when test fails.
This fixes a bug reported by Sachin P. Sant.
Signed-off-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
---
testcases/kernel/containers/pidns/pidns17.c | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
Index: ltp-full-20090331/testcases/kernel/containers/pidns/pidns17.c
===================================================================
--- ltp-full-20090331.orig/testcases/kernel/containers/pidns/pidns17.c 2009-06-10 23:52:44.022094621 -0700
+++ ltp-full-20090331/testcases/kernel/containers/pidns/pidns17.c 2009-06-11 00:09:37.454753439 -0700
@@ -74,8 +74,10 @@ int child_fn(void *arg)
/* Spawn many children */
for (i = 0; i < 10; i++)
- if ((children[i] = fork()) == 0)
- sleep(10);
+ if ((children[i] = fork()) == 0) {
+ pause();
+ exit(2);
+ }
/* wait for last child to get scheduled */
sleep(1);
@@ -86,13 +88,16 @@ int child_fn(void *arg)
}
for (i = 0; i < 10; i++) {
- if (waitpid(children[i], &status, WNOHANG) == -1) {
+ if (waitpid(children[i], &status, 0) == -1) {
tst_resm(TBROK, "cinit: waitpid() failed(%s)",\
strerror(errno));
cleanup();
}
- if (!(WIFSIGNALED(&status) && WTERMSIG(status) == SIGUSR1)) {
- tst_resm(TFAIL, "cinit: found a child alive still.");
+ if (!(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR1)) {
+ tst_resm(TFAIL, "cinit: found a child alive still "
+ "%d exit: %d, %d, signal %d, %d", i,
+ WIFEXITED(status), WEXITSTATUS(status),
+ WIFSIGNALED(status), WTERMSIG(status));
cleanup();
}
}
@@ -125,7 +130,7 @@ int main(int argc, char *argv[])
}
sleep(1);
- if (wait(&status) < 0)
+ if (waitpid(-1, &status, __WALL) < 0)
tst_resm(TWARN, "parent: waitpid() failed.");
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
next reply other threads:[~2009-06-17 23:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-17 23:26 Sukadev Bhattiprolu [this message]
2009-06-18 17:31 ` [LTP] [PATCH] pidns17 testcase bugfix/cleanup Subrata Modak
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=20090617232603.GA27168@us.ibm.com \
--to=sukadev@linux.vnet.ibm.com \
--cc=ltp-list@lists.sf.net \
--cc=mohankumar@in.ibm.com \
--cc=ssant@in.ibm.com \
--cc=subrata@linux.vnet.ibm.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox