From d886885b0ec2506fa2caf0986a3d0e496fea91c2 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 16 Jan 2023 04:25:52 +0100 Subject: 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. --- test/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/Makefile.am') 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 = noinst_PROGRAMS = \ plist_cmp \ plist_test \ + integer_set_test \ plist_btest \ plist_jtest \ plist_otest @@ -20,6 +21,9 @@ plist_cmp_LDADD = \ plist_test_SOURCES = plist_test.c plist_test_LDADD = $(top_builddir)/src/libplist-2.0.la +integer_set_test_SOURCES = integer_set.c +integer_set_test_LDADD = $(top_builddir)/src/libplist-2.0.la + plist_btest_SOURCES = plist_btest.c plist_btest_LDADD = $(top_builddir)/src/libplist-2.0.la @@ -54,6 +58,7 @@ TESTS = \ refsize.test \ malformed_dict.test \ uid.test \ + integer_set.test \ json1.test \ json2.test \ json3.test \ -- cgit v1.1-32-gdbae