Update of /cvsroot/libexif/libexif/test
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4655/test
Modified Files:
Makefile.am
Added Files:
test-tagtable.c
Log Message:
Added test-tagtable to do some tests on the static EXIF tag
information table.
--- NEW FILE: test-tagtable.c ---
(This appears to be a binary file; contents omitted.)
Index: Makefile.am
===================================================================
RCS file: /cvsroot/libexif/libexif/test/Makefile.am,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -p -d -r1.21 -r1.22
--- Makefile.am 29 Jun 2007 11:37:36 -0000 1.21
+++ Makefile.am 23 Jan 2009 00:12:27 -0000 1.22
@@ -10,12 +10,13 @@ SUBDIRS = nls
# And this is just the lib - we don't have the program available
# here yet.
-TESTS = test-mem test-value test-integers test-parse
+TESTS = test-mem test-value test-integers test-parse test-tagtable
TEST_IMAGES = $(top_srcdir)/daniel-andrews-sample.jpg
export TEST_IMAGES
-check_PROGRAMS = test-mem test-mnote test-value test-integers test-parse
+check_PROGRAMS = test-mem test-mnote test-value test-integers test-parse \
+ test-tagtable
test_mem_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL)
@@ -24,3 +25,5 @@ test_mnote_LDADD = $(top_builddir)/libex
test_value_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL)
test_parse_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL)
+
+test_tagtable_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL)
|