Module Name: src Committed By: matt Date: Fri Mar 16 08:14:12 UTC 2012
Modified Files: src/tests/lib/libc/sys: t_listen.c Log Message: This is no longer expected to fail. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/sys/t_listen.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/sys/t_listen.c diff -u src/tests/lib/libc/sys/t_listen.c:1.2 src/tests/lib/libc/sys/t_listen.c:1.3 --- src/tests/lib/libc/sys/t_listen.c:1.2 Wed Mar 7 07:24:05 2012 +++ src/tests/lib/libc/sys/t_listen.c Fri Mar 16 08:14:11 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: t_listen.c,v 1.2 2012/03/07 07:24:05 jruoho Exp $ */ +/* $NetBSD: t_listen.c,v 1.3 2012/03/16 08:14:11 matt Exp $ */ /* * Copyright (c) 2007 The NetBSD Foundation, Inc. * All rights reserved. @@ -78,8 +78,6 @@ ATF_TC_BODY(listen_err, tc) * According to IEEE Std 1003.1-2008: if the socket is * already connected, the call should fail with EINVAL. */ - atf_tc_expect_fail("PR standards/46150"); - ATF_REQUIRE(connect(fdb, (struct sockaddr *)&sinb, siz) == 0); ATF_REQUIRE_ERRNO(EINVAL, listen(fdb, 1) == -1);