We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13a9250 commit 249140aCopy full SHA for 249140a
tools/abi-check.sh
@@ -6,4 +6,10 @@ LC_ALL=C.UTF-8 PATH=/snap/bin:$PATH abi-dumper ./build/libyang.so -o ./build/lib
6
abi-compliance-checker -l libyang.so -old ./libyang.dump -new ./build/libyang.dump -s || status=$?
7
# Generate and dump text output
8
w3m -dump -O ascii -T text/html "$(find "compat_reports/${SONAME}" -name '*.html')"
9
+# Dump the new libyang ABI dump if it differs
10
+if [ "$status" -ne 0 ]; then
11
+ echo "-- cut here --"
12
+ cat ./build/libyang.dump
13
14
+fi
15
exit $status
0 commit comments