16kb: bionic: Re-align libtest_invalid-zero_shdr_table_content.so to 16kb
The library libtest_invalid-zero_shdr_table_content.so is realigned to 16kb
for arm64 and x86_64.
In order for the bionic-unit-tests to pass with 16kb page size targets,
it is necessary to realign the libraries to 16kb.
This library was generated using:
```
$ m geninvalelf64
$ adb push out/target/product/vsoc_x86_64_pgagnostic/system/bin/geninvalelf64 /data
$ adb shell
vsoc_x86_64_pgagnostic:./data/geninvalelf64 test_X86_64/libtest_empty.so test_X86_64
```
With this change, the test `dlopen_invalid_zero_shdr_table_content` is passing in
aosp_cf_x86_64_phone_pgagnostic target.
```
$ m bionic-unit-tests
$ atest bionic-unit-tests
[2874/2978] dlfcn#dlopen_invalid_zero_shdr_table_content: PASSED (4ms)
```
Bug: 347728628
Test: Use readelf and xxd to verify executable header
For arm64:
```
$ readelf -h arm64/libtest_invalid-zero_shdr_table_content.so
ELF Header:
Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
Class: ELF64
....
Start of section headers: 3480 (bytes into file)
# Check the content after the offset 3480
$ xxd -s 3480 arm64/libtest_invalid-zero_shdr_table_content.so
00000d98: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000da8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000db8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000dc8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000dd8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000de8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
.....
000012c8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012d8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012e8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012f8: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001308: 0000 0000 0000 0000 0000 0000 0000 0000 ................
```
For x86_64
```
$ readelf -h x86_64/libtest_invalid-zero_shdr_table_content.so
ELF Header:
Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
Class: ELF64
...
Start of section headers: 3216 (bytes into file)
# Check the content after the offset 3216
$ xxd -s 3216 x86_64/libtest_invalid-zero_shdr_table_content.so
00000c90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ca0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000cb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000cc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000cd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ce0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000cf0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
.....
000011e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000011f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001200: 0000 0000 0000 0000 0000 0000 0000 0000 ................
```
Change-Id: I8a0129bc92f7cdc04907e62ac9c92a2edcde2f30
diff --git a/tests/prebuilt-elf-files/arm64/libtest_invalid-zero_shdr_table_content.so b/tests/prebuilt-elf-files/arm64/libtest_invalid-zero_shdr_table_content.so
index 14b80b5..0416db2 100755
--- a/tests/prebuilt-elf-files/arm64/libtest_invalid-zero_shdr_table_content.so
+++ b/tests/prebuilt-elf-files/arm64/libtest_invalid-zero_shdr_table_content.so
Binary files differ
diff --git a/tests/prebuilt-elf-files/x86_64/libtest_invalid-zero_shdr_table_content.so b/tests/prebuilt-elf-files/x86_64/libtest_invalid-zero_shdr_table_content.so
index 27d1138..3d1f5d3 100755
--- a/tests/prebuilt-elf-files/x86_64/libtest_invalid-zero_shdr_table_content.so
+++ b/tests/prebuilt-elf-files/x86_64/libtest_invalid-zero_shdr_table_content.so
Binary files differ