Module Name:    src
Committed By:   martin
Date:           Sun Mar 18 10:19:33 UTC 2018

Modified Files:
        src/tests/lib/libc/locale [netbsd-8]: t_wcstod.c

Log Message:
Additionally pull up r1.5 for ticket #608:

VAX doesn't have the test cases, so stub the body as well.


To generate a diff of this commit:
cvs rdiff -u -r1.3.34.1 -r1.3.34.2 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.3.34.1 src/tests/lib/libc/locale/t_wcstod.c:1.3.34.2
--- src/tests/lib/libc/locale/t_wcstod.c:1.3.34.1	Thu Mar 15 09:55:23 2018
+++ src/tests/lib/libc/locale/t_wcstod.c	Sun Mar 18 10:19:33 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: t_wcstod.c,v 1.3.34.1 2018/03/15 09:55:23 martin Exp $ */
+/* $NetBSD: t_wcstod.c,v 1.3.34.2 2018/03/18 10:19:33 martin 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.3.34.1 2018/03/15 09:55:23 martin Exp $");
+__RCSID("$NetBSD: t_wcstod.c,v 1.3.34.2 2018/03/18 10:19:33 martin 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);

Reply via email to