svn commit: r273950 - head/contrib/netbsd-tests/lib/libc/stdio

Garrett Cooper ngie at FreeBSD.org
Sat Nov 1 21:25:22 UTC 2014


Author: ngie
Date: Sat Nov  1 21:25:22 2014
New Revision: 273950
URL: https://svnweb.freebsd.org/changeset/base/273950

Log:
  Skip :fopen_regular on !NetBSD because it's a NetBSD specific test
  
  Submitted by: pho

Modified:
  head/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c

Modified: head/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c	Sat Nov  1 21:23:27 2014	(r273949)
+++ head/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c	Sat Nov  1 21:25:22 2014	(r273950)
@@ -434,7 +434,9 @@ ATF_TP_ADD_TCS(tp)
 	ATF_TP_ADD_TC(tp, fopen_err);
 	ATF_TP_ADD_TC(tp, fopen_mode);
 	ATF_TP_ADD_TC(tp, fopen_perm);
+#ifdef __NetBSD__
 	ATF_TP_ADD_TC(tp, fopen_regular);
+#endif
 	ATF_TP_ADD_TC(tp, fopen_seek);
 	ATF_TP_ADD_TC(tp, freopen_std);
 


More information about the svn-src-all mailing list