summaryrefslogtreecommitdiffstats
path: root/test/Makefile.am
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-01-16 04:25:52 +0100
committerGravatar Nikias Bassen2023-01-16 04:25:52 +0100
commitd886885b0ec2506fa2caf0986a3d0e496fea91c2 (patch)
tree58bc4bcd1963ea885abd60a65bf87a2685526714 /test/Makefile.am
parent47a7fbe438ee7350a2b151e007f07043ef596775 (diff)
downloadlibplist-d886885b0ec2506fa2caf0986a3d0e496fea91c2.tar.gz
libplist-d886885b0ec2506fa2caf0986a3d0e496fea91c2.tar.bz2
Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val()
This properly supports getting and setting signed or unsigned integer values. Also, a new helper function plist_int_val_is_negative() was added to determine if a given #PLIST_INT node has a negative value or not. The old type PLIST_UINT is defined as a macro with the value of PLIST_INT for backwards compatibility. This commit also adds int vs. uint support to the C++ interface, and the python bindings in a hopefully useful way.
Diffstat (limited to 'test/Makefile.am')
-rw-r--r--test/Makefile.am5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 66543ea..5326317 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -8,6 +8,7 @@ AM_LDFLAGS =
8noinst_PROGRAMS = \ 8noinst_PROGRAMS = \
9 plist_cmp \ 9 plist_cmp \
10 plist_test \ 10 plist_test \
11 integer_set_test \
11 plist_btest \ 12 plist_btest \
12 plist_jtest \ 13 plist_jtest \
13 plist_otest 14 plist_otest
@@ -20,6 +21,9 @@ plist_cmp_LDADD = \
20plist_test_SOURCES = plist_test.c 21plist_test_SOURCES = plist_test.c
21plist_test_LDADD = $(top_builddir)/src/libplist-2.0.la 22plist_test_LDADD = $(top_builddir)/src/libplist-2.0.la
22 23
24integer_set_test_SOURCES = integer_set.c
25integer_set_test_LDADD = $(top_builddir)/src/libplist-2.0.la
26
23plist_btest_SOURCES = plist_btest.c 27plist_btest_SOURCES = plist_btest.c
24plist_btest_LDADD = $(top_builddir)/src/libplist-2.0.la 28plist_btest_LDADD = $(top_builddir)/src/libplist-2.0.la
25 29
@@ -54,6 +58,7 @@ TESTS = \
54 refsize.test \ 58 refsize.test \
55 malformed_dict.test \ 59 malformed_dict.test \
56 uid.test \ 60 uid.test \
61 integer_set.test \
57 json1.test \ 62 json1.test \
58 json2.test \ 63 json2.test \
59 json3.test \ 64 json3.test \