]> sourceware.org Git - glibc.git/commitdiff
Exit with error status on check-abi failure.
authorJoseph Myers <joseph@codesourcery.com>
Tue, 18 Mar 2014 00:05:28 +0000 (00:05 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 18 Mar 2014 00:05:28 +0000 (00:05 +0000)
* Makerules [!subdir] (check-abi): Exit with error status if a
test failed.

ChangeLog
Makerules

index c7e121df064fa440dae4d03957e0329c3ea46eea..b007a2ef63b13018f2a361bd7d21cd77acd87e75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-03-18  Joseph Myers  <joseph@codesourcery.com>
+
+       * Makerules [!subdir] (check-abi): Exit with error status if a
+       test failed.
+
 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
 
        * math/libm-test.inc (nearbyint_test_data): Include all tests used
index 008e80a33a96127774a3df7480867a244298307e..4427f4eb03160c559d76469e0fe88768f55b7c22 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -1257,6 +1257,7 @@ subdir_check-abi: check-abi
 subdir_update-abi: update-abi
 else
 check-abi: subdir_check-abi
+       if grep -q '^FAIL:' $(objpfx)*/check-abi*.test-result; then exit 1; fi
 update-abi: subdir_update-abi
 endif
 
This page took 0.118272 seconds and 5 git commands to generate.