16kb: bionic: Re-align libtest_invalid-empty_shdr_table.so to 16kb

The library libtest_invalid-empty_shdr_table.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_empty_shdr_table` is passing in
aosp_cf_x86_64_phone_pgagnostic target.

```
$ m bionic-unit-tests
$ atest bionic-unit-tests
[2871/2978] dlfcn#dlopen_invalid_empty_shdr_table: PASSED (2ms)
```

Bug: 347728628
Test: Use readelf to verify executable header
For arm64:

```
 $ readelf -h arm64/libtest_invalid-empty_shdr_table.so  | grep Number
 Number of program headers:         8
 Number of section headers:         0 (0)libtest_invalid-empty_shdr_table.so
```

For x86_64

```
 $ readelf -h x86_64/libtest_invalid-empty_shdr_table.so  | grep Number
 Number of program headers:         8
 Number of section headers:         0 (0)libtest_invalid-empty_shdr_table.so
```

Change-Id: I85f065018db798b378b52822826fea7bdb19fa0a
diff --git a/tests/prebuilt-elf-files/arm64/libtest_invalid-empty_shdr_table.so b/tests/prebuilt-elf-files/arm64/libtest_invalid-empty_shdr_table.so
index c8b5430..21a8f26 100755
--- a/tests/prebuilt-elf-files/arm64/libtest_invalid-empty_shdr_table.so
+++ b/tests/prebuilt-elf-files/arm64/libtest_invalid-empty_shdr_table.so
Binary files differ
diff --git a/tests/prebuilt-elf-files/x86_64/libtest_invalid-empty_shdr_table.so b/tests/prebuilt-elf-files/x86_64/libtest_invalid-empty_shdr_table.so
index af1538d..00fefd4 100755
--- a/tests/prebuilt-elf-files/x86_64/libtest_invalid-empty_shdr_table.so
+++ b/tests/prebuilt-elf-files/x86_64/libtest_invalid-empty_shdr_table.so
Binary files differ