libc/limits_test: add no-op testcase to satisfy kyua

This test suite is purely tested with compile-time assertions, so
it needs a dummy runtime test to ensure that kyua reports the
file as passing.

Pull Request:	https://github.com/freebsd/freebsd-src/pull/1915
Sponsored by:	The FreeBSD Foundation
Reviewed by:	fuz
Approved by:	markj (mentor)
MFC after:	1 month
Signed-off-by:	Siva Mahadevan <me@svmhdvn.name>
This commit is contained in:
Siva Mahadevan 2025-10-23 09:17:25 -04:00 committed by Robert Clausecker
parent 9155d4b273
commit 27ff0bbcfd

View file

@ -93,9 +93,12 @@ CHECK_UTYPE(uintptr_t, UINTPTR);
CHECK_UTYPE(size_t, SIZE);
/* dummy */
ATF_TC_WITHOUT_HEAD(dummy);
ATF_TC_BODY(dummy, tc) {}
ATF_TP_ADD_TCS(tp)
{
(void)tp;
ATF_TP_ADD_TC(tp, dummy);
return (atf_no_error());
}