gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Gabriele Giacone
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-2147-g935df16
Date: Sat, 05 Jul 2014 01:01:08 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  935df167eb7b3b2cab472bdfc357e4a57ba756c6 (commit)
      from  1be5fea0559691d3361e7d1e78fdd7872735d26e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=935df167eb7b3b2cab472bdfc357e4a57ba756c6


commit 935df167eb7b3b2cab472bdfc357e4a57ba756c6
Author: Gabriele Giacone <address@hidden>
Date:   Sat Jul 5 02:59:16 2014 +0200

    Distcheck builddir is readonly, no tmpfile.

diff --git a/testsuite/analyse-results.sh b/testsuite/analyse-results.sh
index b590424..82cc53e 100755
--- a/testsuite/analyse-results.sh
+++ b/testsuite/analyse-results.sh
@@ -94,13 +94,14 @@ if test ${total_fail} -gt 0 || test ${total_xpass} -gt 0; 
then
 
        rc=1
        timing=$(dirname $0)/timingissues
-       > ${timing}.tmp
+       > ${timing}.tmp || have_tmpfile=false # distcheck builddir is read-only
 
        if test ${total_fail} -gt 0; then
                echo "Unexpected failures follow:"
                for s in ${suitefail}; do
                        echo " --=[ ${s} ]=-- "
-                       grep -w FAIL ${s}/testrun.sum | tee -a ${timing}.tmp
+                       grep -w FAIL ${s}/testrun.sum | \
+                               ($have_tmpfile && tee -a ${timing}.tmp)
                done
                echo
        fi
@@ -114,6 +115,10 @@ if test ${total_fail} -gt 0 || test ${total_xpass} -gt 0; 
then
                echo
        fi
 
+       if test "$have_tmpfile" = "false"; then
+               exit $rc
+       fi
+
        if test `grep -cf $timing ${timing}.tmp` -gt 0; then
                if test `grep -cvf $timing ${timing}.tmp` -eq 0; then
                        echo "All failures are time-related. Exiting 0."

-----------------------------------------------------------------------

Summary of changes:
 testsuite/analyse-results.sh |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]