alsa-utils/axfer/test/Makefile.am
Takashi Sakamoto 39d1ab8a0c axfer: add a unit test for mapper interface
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>
2018-11-13 12:04:28 +01:00

32 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