mirror of git://sourceware.org/git/glibc.git
Print offending diff when check-abi fails
The earlier version of check-abi would print a diff of the expected ABI vs the built ABI when there was a difference. Bring back this behaviour.
This commit is contained in:
parent
aba8ef95b5
commit
0813022c79
|
@ -1,3 +1,8 @@
|
||||||
|
2014-06-24 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||||
|
|
||||||
|
* Makerules (check-abi): Dump diff of symlist if the test
|
||||||
|
fails.
|
||||||
|
|
||||||
2014-06-23 Roland McGrath <roland@hack.frob.com>
|
2014-06-23 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
* sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
|
* sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
|
||||||
|
|
|
@ -1257,7 +1257,8 @@ subdir_check-abi: check-abi
|
||||||
subdir_update-abi: update-abi
|
subdir_update-abi: update-abi
|
||||||
else
|
else
|
||||||
check-abi: subdir_check-abi
|
check-abi: subdir_check-abi
|
||||||
if grep -q '^FAIL:' $(objpfx)*/check-abi*.test-result; then exit 1; fi
|
if grep -q '^FAIL:' $(objpfx)*/check-abi*.test-result; then \
|
||||||
|
cat $(objpfx)*/check-abi*.out && exit 1; fi
|
||||||
update-abi: subdir_update-abi
|
update-abi: subdir_update-abi
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue