guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.9-5-g72d4abd


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.9-5-g72d4abd
Date: Sun, 14 Apr 2013 13:47:06 +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 "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=72d4abda1d2766096d246a2c0fe75c1522782934

The branch, stable-2.0 has been updated
       via  72d4abda1d2766096d246a2c0fe75c1522782934 (commit)
      from  f5b2eea6a39507ecf6a8ecc62cc1c796c45c2d1d (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 -----------------------------------------------------------------
commit 72d4abda1d2766096d246a2c0fe75c1522782934
Author: Ludovic Courtès <address@hidden>
Date:   Sun Apr 14 15:46:17 2013 +0200

    tests: Use shell constructs that /bin/sh on Solaris 10 can understand.
    
    Partly fixes <http://bugs.gnu.org/14042>.
    Reported by Marc Girod <address@hidden>
    
    * test-suite/standalone/test-language: Use a shell construct that
      /bin/sh on Solaris 10 can understand.

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

Summary of changes:
 test-suite/standalone/test-language |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/test-suite/standalone/test-language 
b/test-suite/standalone/test-language
index 59ed82b..d67d361 100755
--- a/test-suite/standalone/test-language
+++ b/test-suite/standalone/test-language
@@ -8,7 +8,9 @@ set -e
 # The default language in effect until `--language' is encountered is
 # Scheme.
 guile -c "(exit (= 3 (apply + '(1 2))))" --language=elisp
-! guile -c "(= (funcall (symbol-function '+) 1 2) 3)" 2> /dev/null
+
+if guile -c "(= (funcall (symbol-function '+) 1 2) 3)" 2> /dev/null
+then false; else true; fi
 
 guile --language=elisp -c "(= (funcall (symbol-function '+) 1 2) 3)"
 guile --language=ecmascript -c '(function (x) { return x * x; })(2);'


hooks/post-receive
-- 
GNU Guile



reply via email to

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