Module Name: src
Committed By: pooka
Date: Mon Dec 6 17:30:07 UTC 2010
Modified Files:
src/tests/lib/libc/stdlib: t_strtox.c
Log Message:
Adjust PR format in xfail message so that html test results gain a
link to http://gnats.netbsd.org/44189
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/stdlib/t_strtox.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/stdlib/t_strtox.c
diff -u src/tests/lib/libc/stdlib/t_strtox.c:1.1 src/tests/lib/libc/stdlib/t_strtox.c:1.2
--- src/tests/lib/libc/stdlib/t_strtox.c:1.1 Fri Dec 3 13:11:50 2010
+++ src/tests/lib/libc/stdlib/t_strtox.c Mon Dec 6 17:30:07 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: t_strtox.c,v 1.1 2010/12/03 13:11:50 njoly Exp $ */
+/* $NetBSD: t_strtox.c,v 1.2 2010/12/06 17:30:07 pooka Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_strtox.c,v 1.1 2010/12/03 13:11:50 njoly Exp $");
+__RCSID("$NetBSD: t_strtox.c,v 1.2 2010/12/06 17:30:07 pooka Exp $");
#include <atf-c.h>
#include <stdlib.h>
@@ -50,7 +50,7 @@
str = "-0x0";
ATF_REQUIRE(strtod(str, &end) == -0.0 && end == str+4);
- atf_tc_expect_fail("PR/44189");
+ atf_tc_expect_fail("PR lib/44189");
str = "-0x";
ATF_REQUIRE(strtod(str, &end) == -0.0 && end == str+2);
atf_tc_expect_pass();