mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 18:29:53 +00:00
cpp: add test/{zone,pack_unpack,streaming,object,convert,buffer}.cc
This commit is contained in:
parent
d19bfaa2cb
commit
9fbca83ac0
10 changed files with 576 additions and 2 deletions
26
cpp/test/Makefile.am
Normal file
26
cpp/test/Makefile.am
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
AM_LDFLAGS = ../libmsgpack.la -lgtest_main
|
||||
|
||||
check_PROGRAMS = \
|
||||
zone \
|
||||
pack_unpack \
|
||||
streaming \
|
||||
object \
|
||||
convert \
|
||||
buffer
|
||||
|
||||
TESTS = $(check_PROGRAMS)
|
||||
|
||||
zone_SOURCES = zone.cc
|
||||
|
||||
pack_unpack_SOURCES = pack_unpack.cc
|
||||
|
||||
streaming_SOURCES = streaming.cc
|
||||
|
||||
object_SOURCES = object.cc
|
||||
|
||||
convert_SOURCES = convert.cc
|
||||
|
||||
buffer_SOURCES = buffer.cc
|
||||
buffer_LDADD = -lz
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue