Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Nov 2014 21:25:22 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r273950 - head/contrib/netbsd-tests/lib/libc/stdio
Message-ID:  <201411012125.sA1LPM2X056288@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411012125.sA1LPM2X056288>