fix check-exports test on ppc64

This commit is contained in:
Alessandro Ghedini 2012-08-11 15:13:47 +02:00 committed by Petri Lehtinen
parent 7892ecce1c
commit 8176527f56

View file

@ -96,7 +96,7 @@ SOFILE="../src/.libs/libjansson.so"
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
grep ' [DT] ' $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