tests: use spa_assert_se for tests

Or otherwise they are compiled away
This commit is contained in:
Wim Taymans 2022-09-29 15:05:16 +02:00
parent 497c695d6f
commit e97a0a67d8

View file

@ -71,7 +71,7 @@ static void test_mix(uint32_t src_chan, uint32_t src_mask, uint32_t dst_chan, ui
mix.dst_mask = dst_mask; mix.dst_mask = dst_mask;
mix.log = &logger.log; mix.log = &logger.log;
spa_assert(channelmix_init(&mix) == 0); spa_assert_se(channelmix_init(&mix) == 0);
channelmix_set_volume(&mix, 1.0f, false, 0, NULL); channelmix_set_volume(&mix, 1.0f, false, 0, NULL);
dump_matrix(&mix, coeff); dump_matrix(&mix, coeff);
} }
@ -246,7 +246,7 @@ static void run_n_m_impl(struct channelmix *mix, const void **src, uint32_t n_sa
channelmix_f32_n_m_sse(mix, dst_x, src, n_samples); channelmix_f32_n_m_sse(mix, dst_x, src, n_samples);
for (i = 0; i < mix->dst_chan; i++) { for (i = 0; i < mix->dst_chan; i++) {
for (j = 0; j < n_samples; j++) { for (j = 0; j < n_samples; j++) {
spa_assert(dst_c_data[i][j] == dst_x_data[i][j]); spa_assert_se(dst_c_data[i][j] == dst_x_data[i][j]);
} }
} }
} }
@ -273,7 +273,7 @@ static void test_n_m_impl(void)
mix.dst_chan = 12; mix.dst_chan = 12;
mix.log = &logger.log; mix.log = &logger.log;
mix.cpu_flags = cpu_flags; mix.cpu_flags = cpu_flags;
spa_assert(channelmix_init(&mix) == 0); spa_assert_se(channelmix_init(&mix) == 0);
channelmix_set_volume(&mix, 1.0f, false, 0, NULL); channelmix_set_volume(&mix, 1.0f, false, 0, NULL);
/* identity matrix */ /* identity matrix */