mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
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:
parent
9155d4b273
commit
27ff0bbcfd
1 changed files with 4 additions and 1 deletions
|
|
@ -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());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue