From fe64a82d7be9e6ccd10a2566cfe4c4d40cc404ee Mon Sep 17 00:00:00 2001 From: pooka Date: Wed, 1 Dec 2010 07:12:03 +0000 Subject: [PATCH] comment why vax is left out of all the fun --- tests/lib/libc/stdio/t_format.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lib/libc/stdio/t_format.c b/tests/lib/libc/stdio/t_format.c index cfe09ccd8739..a3cd6c51edbb 100644 --- a/tests/lib/libc/stdio/t_format.c +++ b/tests/lib/libc/stdio/t_format.c @@ -46,6 +46,7 @@ ATF_TC_BODY(zero_padding, tc) ATF_CHECK(sprintf(str, "%010f", 0.0) == 10); ATF_REQUIRE_STREQ(str, "000.000000"); + /* ieeefp */ #ifndef __vax__ /* PR/44113: printf(3) should ignore zero padding for nan/inf */ ATF_CHECK(sprintf(str, "%010f", NAN) == 10);