Add unit test for wxLZMA{Input,Output}Stream classes

Create another generic stream test using BaseStreamTestCase framework.
This commit is contained in:
Vadim Zeitlin
2018-03-30 21:55:36 +02:00
parent 50b102ffd2
commit 7c34ca65a0
11 changed files with 124 additions and 2 deletions

View File

@@ -94,6 +94,7 @@ TEST_OBJECTS = \
$(OBJS)\test_filestream.o \
$(OBJS)\test_iostreams.o \
$(OBJS)\test_largefile.o \
$(OBJS)\test_lzmastream.o \
$(OBJS)\test_memstream.o \
$(OBJS)\test_socketstream.o \
$(OBJS)\test_sstream.o \
@@ -711,6 +712,9 @@ $(OBJS)\test_iostreams.o: ./streams/iostreams.cpp
$(OBJS)\test_largefile.o: ./streams/largefile.cpp
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\test_lzmastream.o: ./streams/lzmastream.cpp
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\test_memstream.o: ./streams/memstream.cpp
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<