Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/include/sys No need to keep on trying when this fails ...



details:   https://anonhg.NetBSD.org/src/rev/53f46dbe6294
branches:  trunk
changeset: 770748:53f46dbe6294
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon Oct 31 18:37:01 2011 +0000

description:
No need to keep on trying when this fails in the expected manner.  We
really don't need to have 32k failures.


OK jruoho@

diffstat:

 tests/include/sys/t_bitops.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c7b9d99abf75 -r 53f46dbe6294 tests/include/sys/t_bitops.c
--- a/tests/include/sys/t_bitops.c      Mon Oct 31 15:41:31 2011 +0000
+++ b/tests/include/sys/t_bitops.c      Mon Oct 31 18:37:01 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_bitops.c,v 1.13 2011/10/02 18:34:17 christos Exp $ */
+/*     $NetBSD: t_bitops.c,v 1.14 2011/10/31 18:37:01 pgoyette Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_bitops.c,v 1.13 2011/10/02 18:34:17 christos Exp $");
+__RCSID("$NetBSD: t_bitops.c,v 1.14 2011/10/31 18:37:01 pgoyette Exp $");
 
 #include <atf-c.h>
 
@@ -183,7 +183,7 @@
 
                if (fabs(floor(x) - y) > 1.0e-40) {
                        atf_tc_expect_fail("PR misc/44767");
-                       atf_tc_fail_nonfatal("log2(%"PRIu64") != "
+                       atf_tc_fail("log2(%"PRIu64") != "
                            "ilog2(%"PRIu64")", i, i);
                }
        }



Home | Main Index | Thread Index | Old Index