- Mark signo __unused in the signal handler function

- Effectively #if 0 out some code that does not fail on FreeBSD

In collaboration with: pho
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2014-10-24 06:57:16 +00:00
parent bc3c590b4d
commit cd033efc14
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=273579

View File

@ -47,7 +47,11 @@ static void sighandler(int);
static const size_t maxiter = 2000;
static void
#if defined(__FreeBSD__)
sighandler(int signo __unused)
#else
sighandler(int signo)
#endif
{
/* Nothing. */
}
@ -168,7 +172,9 @@ ATF_TC_BODY(getrusage_utime_zero, tc)
*
* See also (duplicate) PR port-amd64/41734.
*/
#if defined(__NetBSD__)
atf_tc_expect_fail("PR kern/30115");
#endif
for (i = 0; i < maxiter; i++) {
@ -182,7 +188,9 @@ ATF_TC_BODY(getrusage_utime_zero, tc)
atf_tc_fail("zero user time from getrusage(2)");
}
#if defined(__NetBSD__)
atf_tc_fail("anticipated error did not occur");
#endif
}
ATF_TP_ADD_TCS(tp)