Module Name: src Committed By: pooka Date: Wed Dec 1 07:12:03 UTC 2010
Modified Files: src/tests/lib/libc/stdio: t_format.c Log Message: comment why vax is left out of all the fun To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/stdio/t_format.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/lib/libc/stdio/t_format.c diff -u src/tests/lib/libc/stdio/t_format.c:1.2 src/tests/lib/libc/stdio/t_format.c:1.3 --- src/tests/lib/libc/stdio/t_format.c:1.2 Mon Nov 22 08:47:58 2010 +++ src/tests/lib/libc/stdio/t_format.c Wed Dec 1 07:12:03 2010 @@ -46,6 +46,7 @@ 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);