diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-11-27 16:23:35 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-11-27 16:23:35 -0500 |
commit | 0c68f37c4314f1c2cd867792878ba65d58dadff6 (patch) | |
tree | 6a037795b3fef5a3fa26cb15524eaa8fb9fa3658 /test | |
parent | e8f6ddeddf7992560811e06b4fa3fb58ea172e17 (diff) | |
download | libtdevnc-0c68f37c4314f1c2cd867792878ba65d58dadff6.tar.gz libtdevnc-0c68f37c4314f1c2cd867792878ba65d58dadff6.zip |
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.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 5 |
1 files 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) |