The mmap behavior that restricts the addresses returned by mmap caused
unexpected behavior, so get rid of the test cases that check that
behavior.
Signed-off-by: Charlie Jenkins <charlie@rivosinc.com>
Fixes: 73d05262a2
("selftests: riscv: Generalize mm selftests")
Link: https://lore.kernel.org/r/20240826-riscv_mmap-v1-2-cd8962afe47f@rivosinc.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
12 lines
210 B
C
12 lines
210 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
#include <sys/mman.h>
|
|
#include <mmap_test.h>
|
|
|
|
#include "../../kselftest_harness.h"
|
|
|
|
TEST(infinite_rlimit)
|
|
{
|
|
EXPECT_EQ(BOTTOM_UP, memory_layout());
|
|
}
|
|
|
|
TEST_HARNESS_MAIN
|