Files
Mike Frysinger 1368b914e9 sim: testsuite: flatten tree
Now that all port tests live under testsuite/sim/*/, and none live
in testsuite/ directly, flatten the structure by moving all of the
dirs under testsuite/sim/ to testsuite/ directly.

We need to stop passing --tool to dejagnu so that it searches all
dirs and not just ones that start with "sim".  Since we have no
other dirs in this tree, and no plans to add any, should be fine.
2021-01-15 19:18:34 -05:00

15 lines
471 B
C

/* Check that mmapping a page-aligned size, larger than the file,
works.
#notarget: cris*-*-elf
*/
/* Make sure we get an address where the size fits. */
#define MMAP_SIZE1 ((sb.st_size + 8192) & ~8191)
/* If this ever fails because the file is a page-multiple, we'll deal
with that then. We want it larger than the file-size anyway. */
#define MMAP_SIZE2 ((size + 8192) & ~8191)
#define MMAP_FLAGS2 MAP_DENYWRITE | MAP_PRIVATE | MAP_FIXED
#include "mmap5.c"