Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -227,3 +227,5 @@ install_manifest.txt
CPackConfig.cmake
CPackSourceConfig.cmake
*_CPack_Packages/
/unit-tests/SegmentReadWriteLT
/unit-tests/SegmentReadWriteT
8 changes: 6 additions & 2 deletions unit-tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ UNIT_TESTS = marshT arrayT attrTableT structT sequenceT ddsT dasT \
Int32Test UInt32Test Int64Test UInt64Test Float32Test Float64Test \
D4BaseTypeFactoryTest BaseTypeFactoryTest util_mitTest ErrorTest \
MarshallerFutureTest ConstraintEvaluatorTest MarshallerThreadTest \
DAPCache3Test BaseTypeTest
DAPCache3Test BaseTypeTest SegmentReadWriteT

# Unit tests for DAP4-only code. jhrg 2/4/22
UNIT_TESTS += D4MarshallerTest D4UnMarshallerTest D4DimensionsTest \
Expand All @@ -116,7 +116,7 @@ endif
# kln 11/19/24
if CPPUNIT
if USE_BA
UNIT_TESTS += BigArrayTest
UNIT_TESTS += BigArrayTest SegmentReadWriteLT
endif
endif

Expand Down Expand Up @@ -212,6 +212,10 @@ SequenceTest_LDADD = ../tests/libtest-types.a ../libdap.la $(AM_LDADD)

SignalHandlerTest_SOURCES = SignalHandlerTest.cc

SegmentReadWriteT_SOURCES = SegmentReadWriteT.cc

SegmentReadWriteLT_SOURCES = SegmentReadWriteLT.cc

arrayT_SOURCES = arrayT.cc
arrayT_LDADD = ../tests/libtest-types.a ../libdap.la $(AM_LDADD)

Expand Down
Loading
Loading