6b02c22457
stresses the caching and locality systems
42 lines
753 B
Makefile
42 lines
753 B
Makefile
# don't run test_thumbnail.sh by default, it takes ages
|
|
TESTS = \
|
|
test_streams.sh \
|
|
test_descriptors.sh \
|
|
test_cli.sh \
|
|
test_formats.sh \
|
|
test_seq.sh \
|
|
test_stall.sh \
|
|
test_threading.sh
|
|
|
|
SUBDIRS = \
|
|
test-suite
|
|
|
|
noinst_PROGRAMS = \
|
|
test_descriptors \
|
|
test_streams
|
|
|
|
test_descriptors_SOURCES = \
|
|
test_descriptors.c
|
|
|
|
test_streams_SOURCES = \
|
|
test_streams.c
|
|
|
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
|
AM_LDFLAGS = @LDFLAGS@
|
|
LDADD = @VIPS_CFLAGS@ ${top_builddir}/libvips/libvips.la @VIPS_LIBS@
|
|
|
|
EXTRA_DIST = \
|
|
variables.sh.in \
|
|
test_cli.sh \
|
|
test_descriptors.sh \
|
|
test_streams.sh \
|
|
test_formats.sh \
|
|
test_seq.sh \
|
|
test_thumbnail.sh \
|
|
test_stall.sh \
|
|
test_threading.sh
|
|
|
|
clean-local:
|
|
-rm -rf tmp-*
|
|
|