diff options
author | Jacob Bachmeyer <jcb62281@gmail.com> | 2018-10-31 21:32:47 +1100 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2018-10-31 21:32:47 +1100 |
commit | f056f1bd5018a4fdb491c21bc88506c29f26cdd9 (patch) | |
tree | be1c3f236e5eb69a094a063e473067f7c28e732b | |
parent | 6a6d98a5def115d66869880237b0e71afcc5944e (diff) | |
download | dejagnu-f056f1bd5018a4fdb491c21bc88506c29f26cdd9.tar.gz dejagnu-f056f1bd5018a4fdb491c21bc88506c29f26cdd9.tar.bz2 dejagnu-f056f1bd5018a4fdb491c21bc88506c29f26cdd9.zip |
* contrib/sum2junit.sh (failures): Fix typo.
Signed-off-by: Ben Elliston <bje@gnu.org>
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/sum2junit.sh | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2018-10-31 Jacob Bachmeyer <jcb62281@gmail.com> + * contrib/sum2junit.sh (failures): Fix typo. + +2018-10-31 Jacob Bachmeyer <jcb62281@gmail.com> + * configure.ac (DEJAGNU): Add comments. 2018-10-30 Ben Elliston <bje@gnu.org> diff --git a/contrib/sum2junit.sh b/contrib/sum2junit.sh index 7d3b0a4..e08f09e 100755 --- a/contrib/sum2junit.sh +++ b/contrib/sum2junit.sh @@ -46,7 +46,7 @@ if test x"${passes}" = x; then fi # The total of failed results are FAIL and XPASS -failures=$(grep -E -c '^XFAIL|XPASS' "$infile") +failures=$(grep -E -c '^FAIL|XPASS' "$infile") if test x"${failures}" = x; then failures=0 fi |