svn commit: r304038 - projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/rpc
Garrett Cooper
ngie at FreeBSD.org
Sat Aug 13 06:11:54 UTC 2016
Author: ngie
Date: Sat Aug 13 06:11:53 2016
New Revision: 304038
URL: https://svnweb.freebsd.org/changeset/base/304038
Log:
Expect :raw to fail on FreeBSD
clnt_raw fails with `RPC_CANTDECODERES` today with the testcase
provided by NetBSD.
PR: 211804
Sponsored by: EMC / Isilon Storage Division
Modified:
projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c
Modified: projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c
==============================================================================
--- projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c Sat Aug 13 05:42:11 2016 (r304037)
+++ projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c Sat Aug 13 06:11:53 2016 (r304038)
@@ -323,6 +323,10 @@ ATF_TC_HEAD(raw, tc)
ATF_TC_BODY(raw, tc)
{
+#ifdef __FreeBSD__
+ atf_tc_expect_fail("fails with: clnt_call: "
+ "RPC: Can't decode result -- PR # 211804");
+#endif
rawtest(NULL);
}
More information about the svn-src-projects
mailing list