ndisc/tests: relax assertion in "test-ndisc-fake.c"

Still assertion failures:

  ERROR:../src/ndisc/tests/test-ndisc-fake.c:375:test_preference_changed_cb: assertion failed (_a->timestamp >= _ts): (9 >= 10)
This commit is contained in:
Thomas Haller 2020-07-07 22:28:44 +02:00
parent 6feab75447
commit a5133e708e
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -61,8 +61,8 @@ match_gateway (const NMNDiscData *rdata, guint idx, const char *addr, guint32 ts
_a = &_rdata->addresses[_idx]; \
\
nmtst_assert_ip6_address (&_a->address, (addr)); \
g_assert_cmpint (_a->timestamp, >=, _ts); \
g_assert_cmpint (_a->timestamp, <=, _ts + 1); \
g_assert_cmpint ((int) _a->timestamp, >=, (int) _ts - 1); \
g_assert_cmpint (_a->timestamp + _a->lifetime, ==, _ts + (lt)); \
g_assert_cmpint (_a->timestamp + _a->preferred, ==, _ts + (pref)); \
} G_STMT_END