test: replace all spa_assert() macros with spa_assert_se()

These are tests, we never want those to be optimized away.
This commit is contained in:
Peter Hutterer 2021-07-27 09:59:41 +10:00
parent 63d833dabf
commit 49f3d5842e
14 changed files with 981 additions and 981 deletions

View file

@ -112,8 +112,8 @@ static void pull_blocks(struct resample *r, uint32_t first, uint32_t size)
in_len, pin_len, out_len, pout_len,
resample_in_len(r, size));
spa_assert(in_len == pin_len);
spa_assert(out_len == pout_len);
spa_assert_se(in_len == pin_len);
spa_assert_se(out_len == pout_len);
}
}