[app-mgmt-test] Use gauranteed invalid address

While it is unlikely, with ASLR or an unusual ELF the top page
(previously used as an invalid user address) could be occupied.

We currently forbid mapping pages below 0x8000, so this is more clearly
unmapped, but is neither NULL nor in the kernel range.

Bug: 80146040
Change-Id: I4b915b692fe5f20f4033009cbd7fade8f3b84395
diff --git a/app-mgmt-test/syscalls-test/main/main.c b/app-mgmt-test/syscalls-test/main/main.c
index e7d91dc..b2ac0ad 100644
--- a/app-mgmt-test/syscalls-test/main/main.c
+++ b/app-mgmt-test/syscalls-test/main/main.c
@@ -30,7 +30,7 @@
 #define PORT_BASE "com.android.appmgmt-unittest.syscalls"
 
 #define KERNEL_ADDRESS KERNEL_ASPACE_BASE
-#define INVALID_USER_ADDRESS (USER_ASPACE_BASE + USER_ASPACE_SIZE - 0x1000)
+#define INVALID_USER_ADDRESS (0x1000)
 
 #define TEST_DATA_BYTE 0x5a
 #define PAGE_SIZE 4096