diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | tests/Makefile.am | 5 |
2 files changed, 17 insertions, 1 deletions
@@ -1,3 +1,16 @@ +2006-01-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com> + + * src/xi.c + Start work on add read/write of instrument chunks. + + * src/command_test.c + Add tests for XI instrument chunk. + + * tests/largefile_test.c tests/Makefile.am + Add new test and hook it into the build system. This test will not be run + automatically because it requires 3 Gig of disk space and takes 3 minutes + to run. + 2006-01-10 Erik de Castro Lopo <erikd AT mega-nerd DOT com> * examples/sndfile-play.c diff --git a/tests/Makefile.am b/tests/Makefile.am index d2eb9a7..bce2f91 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -6,7 +6,7 @@ noinst_PROGRAMS = sfversion floating_point_test write_read_test \ pcm_test headerless_test pipe_test benchmark header_test misc_test \ raw_test string_test open_fail_test multi_file_test dither_test \ scale_clip_test win32_test fix_this aiff_rw_test virtual_io_test \ - locale_test + locale_test largefile_test SNDFILEDIR = ../src INCLUDES = -I$(srcdir)/$(SNDFILEDIR) @@ -55,6 +55,9 @@ command_test_LDADD = $(SNDFILEDIR)/libsndfile.la locale_test_SOURCES = locale_test.c utils.c locale_test_LDADD = $(SNDFILEDIR)/libsndfile.la +largefile_test_SOURCES = largefile_test.c utils.c +largefile_test_LDADD = $(SNDFILEDIR)/libsndfile.la + pcm_test_SOURCES = pcm_test.c utils.c pcm_test_LDADD = $(SNDFILEDIR)/libsndfile.la |