mirror of
https://github.com/akheron/jansson.git
synced 2025-04-06 05:55:05 +00:00
check-exports test: Filter out symbols that start with an underscore
These are usually internal to libc, and such symbols are exported in the shared library on some platforms.
This commit is contained in:
parent
afa1d37e20
commit
a1882fee02
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ grep 'json_' $top_srcdir/src/jansson.def \
|
|||
nm -D $SOFILE >/dev/null >$test_log/symbols 2>/dev/null \
|
||||
|| exit 77 # Skip if "nm -D" doesn't seem to work
|
||||
|
||||
grep ' [DT] ' $test_log/symbols | cut -d' ' -f3 | sort >$test_log/output
|
||||
grep ' [DT] ' $test_log/symbols | cut -d' ' -f3 | grep -v '^_' | sort >$test_log/output
|
||||
|
||||
if ! cmp -s $test_log/exports $test_log/output; then
|
||||
diff -u $test_log/exports $test_log/output >&2
|
||||
|
|
Loading…
Add table
Reference in a new issue