Fix the check-exports tests for versioned symbols

This commit is contained in:
Petri Lehtinen 2021-09-09 21:53:11 +03:00
parent 684e18c927
commit 0677666f65

View File

@ -15,7 +15,7 @@ grep 'json_\|jansson_' $top_srcdir/src/jansson.def \
nm -D $SOFILE >/dev/null >$test_log/symbols 2>/dev/null \ nm -D $SOFILE >/dev/null >$test_log/symbols 2>/dev/null \
|| exit 77 # Skip if "nm -D" doesn't seem to work || exit 77 # Skip if "nm -D" doesn't seem to work
grep ' [DT] ' $test_log/symbols | cut -d' ' -f3 | grep -v '^_' | sort >$test_log/output grep ' [DT] ' $test_log/symbols | cut -d' ' -f3 | grep -v '^_' | sed 's/@@libjansson.*//' | sort >$test_log/output
if ! cmp -s $test_log/exports $test_log/output; then if ! cmp -s $test_log/exports $test_log/output; then
diff -u $test_log/exports $test_log/output >&2 diff -u $test_log/exports $test_log/output >&2