git: 60d0871dbfbe - main - tests/sys/audit: Remove MIPS-specific sysarch(2) test.

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Wed, 29 Mar 2023 22:07:18 UTC
The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=60d0871dbfbebe20a9e24c1b4c659cfe841154c1

commit 60d0871dbfbebe20a9e24c1b4c659cfe841154c1
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2023-03-29 22:06:03 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-03-29 22:06:03 +0000

    tests/sys/audit: Remove MIPS-specific sysarch(2) test.
    
    Reviewed by:    emaste
    Differential Revision:  https://reviews.freebsd.org/D39330
---
 tests/sys/audit/miscellaneous.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/tests/sys/audit/miscellaneous.c b/tests/sys/audit/miscellaneous.c
index 727d8300722f..470706ab76ea 100644
--- a/tests/sys/audit/miscellaneous.c
+++ b/tests/sys/audit/miscellaneous.c
@@ -92,9 +92,6 @@ ATF_TC_BODY(sysarch_success, tc)
 #elif defined(AMD64_GET_FSBASE)		/* amd64 */
 	register_t amd64arg;
 
-#elif defined(MIPS_GET_TLS)		/* MIPS */
-	char *mipsarg;
-
 #elif defined(ARM_SYNC_ICACHE)		/* ARM */
 	struct arm_sync_icache_args armsysarg;
 	bzero(&armsysarg, sizeof(armsysarg));
@@ -123,8 +120,6 @@ ATF_TC_BODY(sysarch_success, tc)
 	ATF_REQUIRE_EQ(0, sysarch(I386_GET_IOPERM, &i3sysarg));
 #elif defined(AMD64_GET_FSBASE)
 	ATF_REQUIRE_EQ(0, sysarch(AMD64_GET_FSBASE, &amd64arg));
-#elif defined(MIPS_GET_TLS)
-	ATF_REQUIRE_EQ(0, sysarch(MIPS_GET_TLS, &mipsarg));
 #elif defined(ARM_SYNC_ICACHE)
 	ATF_REQUIRE_EQ(0, sysarch(ARM_SYNC_ICACHE, &armsysarg));
 #elif defined(SPARC_UTRAP_INSTALL)