1 SUBDIRS = nls 2 3 # Notes about tests: 4 # - Add "small" tests and stuff here. 5 # - Add "big" tests and stuff to explicitly test for (fixed) bugs 6 # to libexif-testsuite: 7 # * We don't want to force people to download dozens of test images 8 # just for one small library. 9 # * Proper testing is done with the "exif" program in libexif-testsuite. 10 # And this is just the lib - we don't have the program available 11 # here yet. 12 13 TESTS = test-mem test-value test-integers test-parse test-tagtable test-sorted 14 15 TEST_IMAGES = $(top_srcdir)/daniel-andrews-sample.jpg 16 export TEST_IMAGES 17 18 check_PROGRAMS = test-mem test-mnote test-value test-integers test-parse \ 19 test-tagtable test-sorted 20 21 LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL) 22