From: Alessandro Ghedini Date: Sat, 11 Aug 2012 13:13:47 +0000 (+0200) Subject: fix check-exports test on ppc64 X-Git-Tag: v2.4-moonshot~1^2~10^2 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=8176527f565327c8f443d796e177fb96cae19e3e;hp=7892ecce1c220c4d2bdffa2dbe1c8afe046d3509;p=jansson.git fix check-exports test on ppc64 --- diff --git a/test/suites/api/check-exports b/test/suites/api/check-exports index a7c87a9..fe393f5 100755 --- a/test/suites/api/check-exports +++ b/test/suites/api/check-exports @@ -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