From: mornfall@sourceware.org <mornfall@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2/test harness.c
Date: 16 Feb 2009 16:49:22 -0000 [thread overview]
Message-ID: <20090216164922.25304.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: mornfall at sourceware.org 2009-02-16 16:49:22
Modified files:
test : harness.c
Log message:
Only fail when tests have failed, but not when they have been just skipped.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/harness.c.diff?cvsroot=lvm2&r1=1.1&r2=1.2
--- LVM2/test/harness.c 2009/02/12 19:54:45 1.1
+++ LVM2/test/harness.c 2009/02/16 16:49:21 1.2
@@ -153,7 +153,7 @@
npassed + nfailed + nskipped, npassed, nfailed, nskipped);
/* print out a summary */
- if (nfailed || nskipped ) {
+ if (nfailed || nskipped) {
for (i = 1; i < argc; ++ i) {
switch (status[i]) {
case FAILED:
@@ -165,7 +165,7 @@
}
}
printf("\n");
- return 1;
+ return nfailed > 0 || die;
}
return !die;
}
next reply other threads:[~2009-02-16 16:49 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-16 16:49 mornfall [this message]
-- strict thread matches above, loose matches on Subject: below --
2009-02-17 19:36 LVM2/test harness.c mornfall
2010-03-31 23:11 mornfall
2010-04-07 9:41 mornfall
2010-04-07 9:48 mornfall
2010-04-13 7:33 mornfall
2010-04-13 7:34 mornfall
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=20090216164922.25304.qmail@sourceware.org \
--to=mornfall@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.