aboutsummaryrefslogtreecommitdiff
path: root/tests/sys
diff options
context:
space:
mode:
authorRuslan Bukin <br@FreeBSD.org>2016-10-18 10:20:58 +0000
committerRuslan Bukin <br@FreeBSD.org>2016-10-18 10:20:58 +0000
commit05533a6f19f1625e534d9c40eeb7e9e9e799bbe5 (patch)
tree415f26fa008ce285d2f283d498a0c151ad29dd03 /tests/sys
parentbf7d7eae01282b770621ec7c502e37d45023ebe4 (diff)
downloadsrc-05533a6f19f1625e534d9c40eeb7e9e9e799bbe5.tar.gz
src-05533a6f19f1625e534d9c40eeb7e9e9e799bbe5.zip
Fix comment. We have different VM layout on MIPS, so test is skipped.
Requested by: kib Sponsored by: DARPA, AFRL Sponsored by: HEIF5
Notes
Notes: svn path=/head/; revision=307554
Diffstat (limited to 'tests/sys')
-rw-r--r--tests/sys/kern/kern_copyin.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/sys/kern/kern_copyin.c b/tests/sys/kern/kern_copyin.c
index 7eea95e8c782..a8cf0422eec5 100644
--- a/tests/sys/kern/kern_copyin.c
+++ b/tests/sys/kern/kern_copyin.c
@@ -60,7 +60,12 @@ ATF_TC_BODY(kern_copyin, tc)
char template[] = "copyin.XXXXXX";
#ifdef __mips__
- /* MIPS has no shared page implemented yet. */
+ /*
+ * MIPS has different VM layout: the UVA map on mips ends the
+ * highest mapped entry at the VM_MAXUSER_ADDRESS - PAGE_SIZE,
+ * while all other arches map either stack or shared page up
+ * to the VM_MAXUSER_ADDRESS.
+ */
atf_tc_skip("Platform is not supported.");
#endif