Module Name: src Committed By: joerg Date: Fri Jul 14 14:09:53 UTC 2017
Modified Files: src/tests/lib/libc/locale: t_wcstod.c Log Message: VAX doesn't have the test cases, so stub the body as well. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libc/locale/t_wcstod.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/locale/t_wcstod.c diff -u src/tests/lib/libc/locale/t_wcstod.c:1.4 src/tests/lib/libc/locale/t_wcstod.c:1.5 --- src/tests/lib/libc/locale/t_wcstod.c:1.4 Wed Jul 12 17:32:51 2017 +++ src/tests/lib/libc/locale/t_wcstod.c Fri Jul 14 14:09:53 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: t_wcstod.c,v 1.4 2017/07/12 17:32:51 perseant Exp $ */ +/* $NetBSD: t_wcstod.c,v 1.5 2017/07/14 14:09:53 joerg Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. @@ -56,7 +56,7 @@ #include <sys/cdefs.h> __COPYRIGHT("@(#) Copyright (c) 2011\ The NetBSD Foundation, inc. All rights reserved."); -__RCSID("$NetBSD: t_wcstod.c,v 1.4 2017/07/12 17:32:51 perseant Exp $"); +__RCSID("$NetBSD: t_wcstod.c,v 1.5 2017/07/14 14:09:53 joerg Exp $"); #include <errno.h> #include <math.h> @@ -392,6 +392,7 @@ ATF_TC_HEAD(wcstombs, tc) } ATF_TC_BODY(wcstombs, tc) { +#if !defined(__vax__) struct test *t; size_t n; char *buf; @@ -411,6 +412,7 @@ ATF_TC_BODY(wcstombs, tc) free(buf); } +#endif } ATF_TC(wcstod);