svn commit: r306964 - head/tests/sys/kern

Ruslan Bukin br at FreeBSD.org
Mon Oct 10 14:21:42 UTC 2016


Author: br
Date: Mon Oct 10 14:21:40 2016
New Revision: 306964
URL: https://svnweb.freebsd.org/changeset/base/306964

Log:
  Skip test on MIPS as we don't have shared page implemented yet.
  
  Sponsored by:	DARPA, AFRL
  Sponsored by:	HEIF5

Modified:
  head/tests/sys/kern/kern_copyin.c

Modified: head/tests/sys/kern/kern_copyin.c
==============================================================================
--- head/tests/sys/kern/kern_copyin.c	Mon Oct 10 14:21:21 2016	(r306963)
+++ head/tests/sys/kern/kern_copyin.c	Mon Oct 10 14:21:40 2016	(r306964)
@@ -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);


More information about the svn-src-head mailing list