From 0c68f37c4314f1c2cd867792878ba65d58dadff6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 27 Nov 2016 16:23:35 -0500 Subject: [PATCH] test/Makefile: use check_PROGRAMS The new jpeg tests were added to noinst when they should have been under check like all the other programs in here. --- test/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index 3b19d61..f07fc82 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,7 +1,8 @@ +check_PROGRAMS = if HAVE_LIBJPEG # TurboJPEG wrapper tests -noinst_PROGRAMS=tjunittest tjbench +check_PROGRAMS += tjunittest tjbench tjunittest_SOURCES=tjunittest.c ../common/turbojpeg.c ../common/turbojpeg.h \ tjutil.c tjutil.h tjbench_SOURCES=tjbench.c ../common/turbojpeg.c ../common/turbojpeg.h \ @@ -19,7 +20,7 @@ endif copyrecttest_LDADD=$(LDADD) -lm -check_PROGRAMS=$(ENCODINGS_TEST) cargstest copyrecttest $(BACKGROUND_TEST) \ +check_PROGRAMS += $(ENCODINGS_TEST) cargstest copyrecttest $(BACKGROUND_TEST) \ cursortest test: encodingstest$(EXEEXT) cargstest$(EXEEXT) copyrecttest$(EXEEXT)