ASoc: Another series to convert to struct
[linux-block.git] / tools / testing / selftests / riscv / mm / testcases / run_mmap.sh
CommitLineData
4d0c04ea
CJ
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3
4original_stack_limit=$(ulimit -s)
5
6./mmap_default
7
8# Force mmap_bottomup to be ran with bottomup memory due to
9# the unlimited stack
10ulimit -s unlimited
11./mmap_bottomup
12ulimit -s $original_stack_limit