guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. release_1-9-5-215-g5b


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-5-215-g5b98517
Date: Mon, 14 Dec 2009 10:02:45 +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=5b98517a652ea51cbb0fd03e87a50c0b3add9707

The branch, master has been updated
       via  5b98517a652ea51cbb0fd03e87a50c0b3add9707 (commit)
      from  61521ea0341286251d615b89e7ee9cd73a42201c (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 5b98517a652ea51cbb0fd03e87a50c0b3add9707
Author: Ludovic Courtès <address@hidden>
Date:   Mon Dec 14 10:59:25 2009 +0100

    Fix test environment issue with ltdl from Libtool 2.2.6b.
    
    Earlier versions of ltdl would look for extensions under $PWD; this
    behavior changed in 2.2.6b.
    
    * test-suite/standalone/Makefile.am (TESTS_ENVIRONMENT): Define
      $builddir.
    
    * test-suite/standalone/test-asmobs: Specify the full path to
      `libtest-asmobs', using $builddir.
    
    * test-suite/standalone/test-extensions: Likewise.

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

Summary of changes:
 test-suite/standalone/Makefile.am     |    1 +
 test-suite/standalone/test-asmobs     |    3 ++-
 test-suite/standalone/test-extensions |    6 ++++--
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/test-suite/standalone/Makefile.am 
b/test-suite/standalone/Makefile.am
index 17ac1e7..27fe3c1 100644
--- a/test-suite/standalone/Makefile.am
+++ b/test-suite/standalone/Makefile.am
@@ -29,6 +29,7 @@ BUILT_SOURCES =
 EXTRA_DIST =
 
 TESTS_ENVIRONMENT =                                            \
+  builddir="$(builddir)"                                       \
   GUILE_AUTO_COMPILE=0 "${top_builddir}/meta/uninstalled-env"
 
 ## Check for headers in $(srcdir) and bulid dir before $(CPPFLAGS), which
diff --git a/test-suite/standalone/test-asmobs 
b/test-suite/standalone/test-asmobs
index 2ea75d9..9689ab9 100755
--- a/test-suite/standalone/test-asmobs
+++ b/test-suite/standalone/test-asmobs
@@ -2,7 +2,8 @@
 exec guile -q -s "$0" "$@"
 !#
 
-(load-extension "libtest-asmobs" "libtest_asmobs_init")
+(load-extension (string-append (getenv "builddir") "/libtest-asmobs")
+                "libtest_asmobs_init")
 
 (define (test x v)
   (if v
diff --git a/test-suite/standalone/test-extensions 
b/test-suite/standalone/test-extensions
index bea432d..ec32011 100755
--- a/test-suite/standalone/test-extensions
+++ b/test-suite/standalone/test-extensions
@@ -2,8 +2,10 @@
 exec guile -q -s "$0" "$@"
 !#
 
-(load-extension "libtest-extensions" "libtest_extensions_init")
-(load-extension "libtest-extensions" "libtest_extensions_init2")
+(load-extension (string-append (getenv "builddir") "/libtest-extensions")
+                "libtest_extensions_init")
+(load-extension (string-append (getenv "builddir") "/libtest-extensions")
+                "libtest_extensions_init2")
 
 (or (= init2-count 1)
     (error "init2 called more or less than one time"))


hooks/post-receive
-- 
GNU Guile




reply via email to

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