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
This commit is contained in:
Enji Cooper 2016-08-13 06:11:53 +00:00
parent 6b7b162b9d
commit 66d08c7db2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/netbsd-tests-update-12/; revision=304038

View File

@ -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);
}