Test framework enhancements, fix the check_exports test
[jansson.git] / test / suites / api / check-exports
index af22c28..3dc4a9e 100755 (executable)
@@ -47,8 +47,6 @@ json_object_iter_set_new
 json_dumps
 json_dumpf
 json_dump_file
-json_error_line
-json_error_msg
 json_loads
 json_loadf
 json_load_file
@@ -56,7 +54,12 @@ json_equal
 json_copy
 json_deep_copy
 json_pack
+json_pack_ex
+json_vpack_ex
 json_unpack
+json_unpack_ex
+json_vunpack_ex
+json_set_alloc_funcs
 EOF
 
 # The list of functions are not exported in the library because they
@@ -86,7 +89,10 @@ EOF
 
 SOFILE="../src/.libs/libjansson.so"
 
-nm -D $SOFILE | grep ' T ' | cut -d' ' -f3 | sort >$test_log/output
+nm -D $SOFILE >/dev/null >$test_log/symbols 2>/dev/null \
+    || exit 77  # Skip if "nm -D" doesn't seem to work
+
+grep ' T ' $test_log/symbols | cut -d' ' -f3 | sort >$test_log/output
 
 if ! cmp -s $test_log/exports $test_log/output; then
     diff -u $test_log/exports $test_log/output >&2