1) In mmap's manual, The starting address for the new mapping is specified in addr.
So, if mmap's argument "addr" is reachable, the mmap will creates a new mapping in the virtual address space of the call-ing process. The test hugemmap03 will test that a normal page cannot be mapped into a high memory region. This infers that "addr" should be higher for 64-bit mode. 2) The test use "-I2" option, and this not only causes TFAIL's loop, but also causes TPASS's loop. For TFAIL, loop is deserved, nor for TPASS. This patch fixed these problems. Signed-off-by: Liu Bo <[email protected]> --- testcases/kernel/mem/hugetlb/hugemmap/hugemmap03.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/testcases/kernel/mem/hugetlb/hugemmap/hugemmap03.c b/testcases/kernel/mem/hugetlb/hugemmap/hugemmap03.c index 892d24b..a07b9aa 100644 --- a/testcases/kernel/mem/hugetlb/hugemmap/hugemmap03.c +++ b/testcases/kernel/mem/hugetlb/hugemmap/hugemmap03.c @@ -55,7 +55,7 @@ #include "usctest.h" #define PAGE_SIZE ((1UL) << 12) /* Normal page size */ -#define HIGH_ADDR (void *)(0x10000000000) +#define HIGH_ADDR (void *)(0x1000000000000) char* TEMPFILE="mmapfile"; @@ -130,6 +130,7 @@ main(int ac, char **av) continue; } else { tst_resm(TPASS, "Normal mmap() into high region failed correctly"); + break; } close(fildes); ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
