Author: ngie
Date: Thu Oct 23 07:05:14 2014
New Revision: 273526
URL: https://svnweb.freebsd.org/changeset/base/273526

Log:
  Omit the pollts testcases on FreeBSD
  
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/contrib/netbsd-tests/lib/libc/sys/t_poll.c

Modified: head/contrib/netbsd-tests/lib/libc/sys/t_poll.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/sys/t_poll.c     Thu Oct 23 06:42:53 
2014        (r273525)
+++ head/contrib/netbsd-tests/lib/libc/sys/t_poll.c     Thu Oct 23 07:05:14 
2014        (r273526)
@@ -233,6 +233,7 @@ ATF_TC_BODY(poll_err, tc)
        ATF_REQUIRE_ERRNO(EINVAL, poll(&pfd, 1, -2) == -1);
 }
 
+#if !defined(__FreeBSD__)
 ATF_TC(pollts_basic);
 ATF_TC_HEAD(pollts_basic, tc)
 {
@@ -377,6 +378,7 @@ ATF_TC_BODY(pollts_sigmask, tc)
 
        ATF_REQUIRE_EQ(close(fd), 0);
 }
+#endif
 
 ATF_TP_ADD_TCS(tp)
 {
@@ -384,9 +386,11 @@ ATF_TP_ADD_TCS(tp)
        ATF_TP_ADD_TC(tp, poll_3way);
        ATF_TP_ADD_TC(tp, poll_basic);
        ATF_TP_ADD_TC(tp, poll_err);
+#if !defined(__FreeBSD__)
        ATF_TP_ADD_TC(tp, pollts_basic);
        ATF_TP_ADD_TC(tp, pollts_err);
        ATF_TP_ADD_TC(tp, pollts_sigmask);
+#endif
 
        return atf_no_error();
 }
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to