Do not print sizeof values in skip message.

This commit is contained in:
njoly 2011-06-10 17:10:43 +00:00
parent 5680b567be
commit 88309ba987
1 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_convfp.c,v 1.4 2011/06/10 15:52:44 njoly Exp $ */
/* $NetBSD: t_convfp.c,v 1.5 2011/06/10 17:10:43 njoly Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@ -75,12 +75,13 @@ ATF_TC_BODY(test1, tc)
dt = ULONG_TESTVALUE;
ul = (unsigned long)dt;
printf("testing long double vs. long\n");
} else
atf_tc_skip("no suitable {long} double type found, skipping "
"\"unsigned long\" test: "
"sizeof(long) = %d, sizeof(double) = %d, "
"sizeof(long double) = %d",
} else {
printf("sizeof(long) = %d, sizeof(double) = %d, "
"sizeof(long double) = %d\n",
sizeof(ul), sizeof(d), sizeof(dt));
atf_tc_skip("no suitable {long} double type found, skipping "
"\"unsigned long\" test");
}
if (ul != ULONG_TESTVALUE)
atf_tc_fail("unsigned long %lu (0x%lx) != %lu (0x%lx)",