Skip test on MIPS as we don't have shared page implemented yet.

Sponsored by:	DARPA, AFRL
Sponsored by:	HEIF5
This commit is contained in:
Ruslan Bukin 2016-10-10 14:21:40 +00:00
parent cb4fe258b4
commit 470d063a87

View File

@ -59,6 +59,11 @@ ATF_TC_BODY(kern_copyin, tc)
{
char template[] = "copyin.XXXXXX";
#ifdef __mips__
/* MIPS has no shared page implemented yet. */
atf_tc_skip("Platform is not supported.");
#endif
scratch_file = mkstemp(template);
ATF_REQUIRE(scratch_file != -1);
unlink(template);