mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 06:55:42 +01:00
39d1ab8a0c
In former commits, mapper module gets supports of muxer/demuxer for single/multiple targets for playback source or capture destination. This commit adds a unit test for them. This includes positive test cases only. The test cases actually generate I/O to file systems for many test cases. It takes a bit long time to finish. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
31 lines
543 B
Makefile
31 lines
543 B
Makefile
TESTS = \
|
|
container-test \
|
|
mapper-test
|
|
|
|
check_PROGRAMS = \
|
|
container-test \
|
|
mapper-test
|
|
|
|
container_test_SOURCES = \
|
|
../container.h \
|
|
../container.c \
|
|
../container-riff-wave.c \
|
|
../container-au.c \
|
|
../container-voc.c \
|
|
../container-raw.c \
|
|
generator.c \
|
|
container-test.c
|
|
|
|
mapper_test_SOURCES = \
|
|
../container.h \
|
|
../container.c \
|
|
../container-riff-wave.c \
|
|
../container-au.c \
|
|
../container-voc.c \
|
|
../container-raw.c \
|
|
../mapper.h \
|
|
../mapper.c \
|
|
../mapper-single.c \
|
|
../mapper-multiple.c \
|
|
generator.c \
|
|
mapper-test.c
|