pipewire/test
Peter Hutterer 01c2cb3d45 test: shut up coverity complaints about side effects
CID 1457494:  Incorrect expression  (ASSERT_SIDE_EFFECT)
Assignment "ai = (void *)((uint8_t *)pod + 16)" has a side effect.  This code will work differently in a non-debug build.
550             spa_assert((ai = SPA_POD_ARRAY_VALUES(pod)) != NULL);

Patch generated with coccinelle snippet
	@@
	expression E1, E2;
	@@
	- spa_assert((E1 = E2) != NULL);
	+ E1 = E2;
	+ spa_assert(E1 != NULL);

And run again for == NULL
2021-06-24 11:14:27 +00:00
..
meson.build test: unbreak FreeBSD 2021-06-21 09:28:02 +00:00
pwtest-compat.c test: add sigabbrev_np() for systems where it's not available 2021-06-10 15:13:57 +10:00
pwtest-implementation.h test: add errno check macros 2021-06-09 18:00:06 +10:00
pwtest.c test: unbreak FreeBSD 2021-06-21 09:28:02 +00:00
pwtest.h meson.build: drop HAVE_CONFIG_H 2021-06-10 09:04:16 +10:00
test-array.c meson.build: drop HAVE_CONFIG_H 2021-06-10 09:04:16 +10:00
test-context.c test: fix test 2021-06-17 11:14:20 +02:00
test-example.c meson.build: drop HAVE_CONFIG_H 2021-06-10 09:04:16 +10:00
test-lib.c meson.build: drop HAVE_CONFIG_H 2021-06-10 09:04:16 +10:00
test-logger.c test: add test for logger's ANSI escape sequences 2021-06-09 18:00:39 +10:00
test-properties.c test: move some of the property tests to pwtest 2021-06-17 07:08:53 +00:00
test-pwtest.c test: add sigabbrev_np() for systems where it's not available 2021-06-10 15:13:57 +10:00
test-spa-buffer.c test: convert two spa tests to pwtest 2021-06-09 18:00:39 +10:00
test-spa-json.c test: convert two spa tests to pwtest 2021-06-09 18:00:39 +10:00
test-spa-node.c test: move the spa tests to pwtest 2021-06-09 18:00:59 +10:00
test-spa-pod.c test: shut up coverity complaints about side effects 2021-06-24 11:14:27 +00:00
test-spa-utils.c tests: fix test 2021-06-22 16:31:51 +02:00
test-support.c test: add a test for the logger truncation 2021-06-09 18:00:39 +10:00