diff options
| author | christos <christos@NetBSD.org> | 2011-10-01 18:38:39 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2011-10-01 18:38:39 +0000 |
| commit | 030a0d1e99fdb7a8c55d0d6f7ff32f47b0f8ece0 (patch) | |
| tree | 073270a3456923bb27f9a4ba8cdbb2b45730ced1 /tests/include | |
| parent | 687cb8f90815f19bb61976849ba24a1ce833e812 (diff) | |
disable test on the vax until we fix it.
Diffstat (limited to 'tests/include')
| -rw-r--r-- | tests/include/sys/t_bitops.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/include/sys/t_bitops.c b/tests/include/sys/t_bitops.c index 62644622cd2..4b7fd8f7bec 100644 --- a/tests/include/sys/t_bitops.c +++ b/tests/include/sys/t_bitops.c @@ -1,4 +1,4 @@ -/* $NetBSD: t_bitops.c,v 1.11 2011/09/30 14:50:20 jruoho Exp $ */ +/* $NetBSD: t_bitops.c,v 1.12 2011/10/01 18:38:39 christos 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.11 2011/09/30 14:50:20 jruoho Exp $"); +__RCSID("$NetBSD: t_bitops.c,v 1.12 2011/10/01 18:38:39 christos Exp $"); #include <atf-c.h> @@ -165,6 +165,9 @@ ATF_TC_HEAD(ilog2_log2, tc) ATF_TC_BODY(ilog2_log2, tc) { +#ifdef __vax___ + atf_tc_skip("Test is unavailable on vax because of lack of log2()"); +#else double x, y; uint64_t i; @@ -184,6 +187,7 @@ ATF_TC_BODY(ilog2_log2, tc) "ilog2(%"PRIu64")", i, i); } } +#endif } ATF_TP_ADD_TCS(tp) |
