Add an adjustment to the before and after values to cater for the
occasional differences between the calculated times.
The exact value of the time stamp is not important what is important is
that is correctly formatted and that the value is reasonable i.e. it's
close enough to the current time.
Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
time_t before;
time_t after;
time_t actual;
+ const int adjustment = 1;
object = json_new_object();
/*
* The timestamp should be before <= actual <= after
+ * but we adjust the times to cater for any precision issues.
*/
+ before -= adjustment;
+ after += adjustment;
assert_true(difftime(actual, before) >= 0);
assert_true(difftime(after, actual) >= 0);