aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2016-08-13 06:11:53 +0000
committerEnji Cooper <ngie@FreeBSD.org>2016-08-13 06:11:53 +0000
commit66d08c7db2c0d91c2f49ccc920d181710425659a (patch)
tree979a543beca7b8c12f7ee08eaa5572f1ec99780d /contrib
parent6b7b162b9d3223158c5393edb6f5d6ad6b1902d1 (diff)
downloadsrc-66d08c7db2c0d91c2f49ccc920d181710425659a.tar.gz
src-66d08c7db2c0d91c2f49ccc920d181710425659a.zip
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
Notes
Notes: svn path=/projects/netbsd-tests-update-12/; revision=304038
Diffstat (limited to 'contrib')
-rw-r--r--contrib/netbsd-tests/lib/libc/rpc/t_rpc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c b/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c
index 60cddcb12fbe..72bda8d4fb8b 100644
--- a/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c
+++ b/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c
@@ -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);
}