aboutsummaryrefslogtreecommitdiff
path: root/test/suites/api/Makefile.am
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-02-17 10:10:53 +0200
committerPetri Lehtinen <petri@digip.org>2011-02-17 10:10:53 +0200
commit4be9e9e7fe54ae2fe6f63d39a8209b41e878196d (patch)
tree03d214fcb933ec751649f0a351886d8b0d9d04df /test/suites/api/Makefile.am
parentdd7dd414f0968a2ca6436c493b4d1d4ed0723bda (diff)
downloadjansson-4be9e9e7fe54ae2fe6f63d39a8209b41e878196d.zip
jansson-4be9e9e7fe54ae2fe6f63d39a8209b41e878196d.tar.gz
jansson-4be9e9e7fe54ae2fe6f63d39a8209b41e878196d.tar.bz2
Add custom memory allocation
Thanks to Basile Starynkevitch for the suggestion and initial patch. Thanks to Jonathan Landis and Deron Meranda for showing how this can be utilized for implementing secure memory operations.
Diffstat (limited to 'test/suites/api/Makefile.am')
-rw-r--r--test/suites/api/Makefile.am8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/suites/api/Makefile.am b/test/suites/api/Makefile.am
index 1e4a0bb..0021f93 100644
--- a/test/suites/api/Makefile.am
+++ b/test/suites/api/Makefile.am
@@ -2,24 +2,26 @@ EXTRA_DIST = run
check_PROGRAMS = \
test_array \
- test_equal \
test_copy \
test_dump \
+ test_equal \
test_load \
- test_simple \
+ test_memory_funcs \
test_number \
test_object \
test_pack \
+ test_simple \
test_unpack
test_array_SOURCES = test_array.c util.h
test_copy_SOURCES = test_copy.c util.h
test_dump_SOURCES = test_dump.c util.h
test_load_SOURCES = test_load.c util.h
-test_simple_SOURCES = test_simple.c util.h
+test_memory_funcs_SOURCES = test_memory_funcs.c util.h
test_number_SOURCES = test_number.c util.h
test_object_SOURCES = test_object.c util.h
test_pack_SOURCES = test_pack.c util.h
+test_simple_SOURCES = test_simple.c util.h
test_unpack_SOURCES = test_unpack.c util.h
AM_CPPFLAGS = -I$(top_srcdir)/src