From: zkabelac@sourceware.org <zkabelac@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2/test/lib harness.c
Date: 13 Jan 2011 11:02:56 -0000 [thread overview]
Message-ID: <20110113110256.13782.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: zkabelac at sourceware.org 2011-01-13 11:02:55
Modified files:
test/lib : harness.c
Log message:
Hotfix to stop harness busylooping
Harness seems to be able to busyloop in while cycle and not moving forward
for certain buffer - so check whethere there was some progress.
This fix allows to continue after failed cluster test.
Fix gcc warning for hiding global variable 's' -> sig.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/lib/harness.c.diff?cvsroot=lvm2&r1=1.3&r2=1.4
--- LVM2/test/lib/harness.c 2011/01/10 13:25:22 1.3
+++ LVM2/test/lib/harness.c 2011/01/13 11:02:55 1.4
@@ -54,10 +54,10 @@
#define FAILED 2
#define WARNED 3
-static void handler( int s ) {
- signal( s, SIG_DFL );
- kill( pid, s );
- die = s;
+static void handler( int sig ) {
+ signal( sig, SIG_DFL );
+ kill( pid, sig );
+ die = sig;
}
static int outline(char *buf, int start, int force) {
@@ -110,10 +110,12 @@
}
static void dump(void) {
- int counter = 0;
+ int counter_last, counter = 0;
- while ( counter < readbuf_used )
- counter = outline( readbuf, counter, 1 );
+ while ( counter < readbuf_used && counter != counter_last ) {
+ counter_last = counter;
+ counter = outline( readbuf, counter, 1 );
+ }
}
static void clear(void) {
next reply other threads:[~2011-01-13 11:02 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-13 11:02 zkabelac [this message]
-- strict thread matches above, loose matches on Subject: below --
2012-03-12 14:24 LVM2/test/lib harness.c zkabelac
2012-02-15 1:31 mornfall
2011-11-07 17:02 mornfall
2011-09-24 21:12 zkabelac
2011-03-10 14:47 zkabelac
2011-01-28 16:05 zkabelac
2011-01-13 15:03 zkabelac
2011-01-10 13:25 zkabelac
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=20110113110256.13782.qmail@sourceware.org \
--to=zkabelac@sourceware.org \
--cc=lvm-devel@redhat.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 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.