diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-12-09 07:01:33 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-12-10 11:26:08 -0800 |
commit | fc2334ab32e04916832955301225a9785c36dac1 (patch) | |
tree | a9e4aaacf5282485797b332a6ada5209189da9fe /elf/tst-alignmod3.c | |
parent | 718fdd87b1b98ef88e883a37d9c18867256fa5a4 (diff) | |
download | glibc-fc2334ab32e04916832955301225a9785c36dac1.tar glibc-fc2334ab32e04916832955301225a9785c36dac1.tar.gz glibc-fc2334ab32e04916832955301225a9785c36dac1.tar.bz2 glibc-fc2334ab32e04916832955301225a9785c36dac1.zip |
Add a testcase to check alignment of PT_LOAD segment [BZ #28676]
Diffstat (limited to 'elf/tst-alignmod3.c')
-rw-r--r-- | elf/tst-alignmod3.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/elf/tst-alignmod3.c b/elf/tst-alignmod3.c new file mode 100644 index 0000000000..0d33f2379d --- /dev/null +++ b/elf/tst-alignmod3.c @@ -0,0 +1,32 @@ +/* Check alignment of PT_LOAD segment in a shared library. + Copyright (C) 2021 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. */ + +#include <support/check.h> +#include <tst-stack-align.h> + +/* This should cover all possible page sizes we currently support. */ +#define ALIGN 0x200000 + +int foo __attribute__ ((aligned (ALIGN))) = 1; + +void +do_load_test (void) +{ + printf ("foo: %p\n", &foo); + TEST_VERIFY (is_aligned (&foo, ALIGN) == 0); +} |