Change output of abicheck.sh

Besides the symbol name field also keep the field for the symbol type as
outputted by nm.
This commit is contained in:
Dimitri Schoolwerth 2015-05-31 03:07:16 +04:00
parent 6be7e28199
commit c76c79a238

View File

@ -29,7 +29,7 @@ if [[ "$1" == "--generate" ]]; then
rm -f $expected_abi_file
for library in $file_mask; do
# NOTE: don't use -C option as otherwise cut won't work correctly
nm $nm_options $library | cut -d ' ' -f 3 | sort >>$expected_abi_file
nm $nm_options $library | cut -d ' ' -f 2,3 | sort >>$expected_abi_file
done
echo "Expected wxWidgets ABI generated in \"$expected_abi_file\"..."
@ -53,7 +53,7 @@ elif [[ -z "$1" ]]; then
rm -f $actual_abi_file
for library in $file_mask; do
# NOTE: don't use -C option as otherwise cut won't work correctly
nm $nm_options $library | cut -d ' ' -f 3 | sort >>$actual_abi_file
nm $nm_options $library | cut -d ' ' -f 2,3 | sort >>$actual_abi_file
done
result=`diff -u $expected_abi_file $actual_abi_file`