mirror of
https://github.com/opnsense/src.git
synced 2026-05-26 03:08:23 -04:00
Fix build after 128b9bf9
MFC after: 2 weeks
(cherry picked from commit 0ced2aef06)
This commit is contained in:
parent
bbc82e5536
commit
99a4f33f27
1 changed files with 3 additions and 2 deletions
|
|
@ -141,8 +141,9 @@ test_sigtimedwait_timeout_eagain(time_t sec, bool zero_tmo)
|
|||
/* now >= ts */
|
||||
ATF_REQUIRE(clock_gettime(CLOCK_REALTIME, &now) == 0);
|
||||
ATF_REQUIRE_MSG(timespeccmp(&now, &ts, >=) == true,
|
||||
"timespeccmp: now { %ld.%ld } < ts { %ld.%ld }",
|
||||
now.tv_sec, now.tv_nsec, ts.tv_sec, ts.tv_nsec);
|
||||
"timespeccmp: now { %jd.%ld } < ts { %jd.%ld }",
|
||||
(intmax_t)now.tv_sec, now.tv_nsec,
|
||||
(intmax_t)ts.tv_sec, ts.tv_nsec);
|
||||
}
|
||||
|
||||
ATF_TC(test_sigtimedwait_timeout_eagain0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue