Hi,

this patch fixes the private repository issue in Solaris.

Regards,
Michele

On Sun, May 4, 2014 at 3:54 PM, Michele La Monaca
<[email protected]> wrote:
> OS     : Solaris 10
> ARCH   : sparc
> C_COMP : Sun C 5.11
>
> Installation works?         : yes
> Installation of eggs works? : yes
> Tests work?                 : almost ->
>
> ===private repository test ...
>
> Error: (read-symbolic-link) could not canonicalize path with symbolic
> links, component does not exis
> t: "..."
>
>
> Regards,
> Michele
>
> On Fri, Apr 18, 2014 at 3:12 PM, Mario Domenech Goulart
> <[email protected]> wrote:
>> Hi,
>>
>> The first release candidate for CHICKEN 4.9.0 has been released.  It's
>> available at
>> http://code.call-cc.org/dev-snapshots/2014/04/17/chicken-4.9.0rc1.tar.gz
>>
>> See http://code.call-cc.org/dev-snapshots/2014/04/17/NEWS for the list
>> of changes.
>>
>> Please, give it a test and report back to the mailing list your
>> findings.
>>
>> Here's a suggested test procedure:
>>
>>   $ make PLATFORM=<platform> PREFIX=<some dir> install check
>>   $ <some dir>/bin/chicken-install pastiche
>>
>> If you want to build CHICKEN with a compiler other than the default one,
>> just use C_COMPILER=<the compiler> (e.g., C_COMPILER=clang) on the make
>> invocation.
>>
>> Of course, feel free to explore other supported build options (see the
>> README file for more information) and actually use CHICKEN 4.9.0rc1 for
>> your software.
>>
>> If you can, please let us know the following information about the
>> environment you tested the RC tarball on:
>>
>> Operating system: (e.g., FreeBSD 10.0, Debian 7, Windows XP mingw-msys)
>> Hardware platform: (e.g., x86, x86-64, PPC)
>> C Compiler: (e.g., GCC 4.8.1, clang 3.0-6.2)
>> Installation works?: yes or no
>> Tests work?: yes or no
>> Installation of eggs works?: yes or no
>>
>> Thanks in advance.
>>
>> The CHICKEN Team
>> --
>> http://www.call-cc.org
>>
>> _______________________________________________
>> Chicken-users mailing list
>> [email protected]
>> https://lists.nongnu.org/mailman/listinfo/chicken-users
From 5285c26a3e6ce5579b1038ddb73dec5e8c764c50 Mon Sep 17 00:00:00 2001
From: Michele La Monaca <[email protected]>
Date: Tue, 6 May 2014 13:17:57 +0200
Subject: [PATCH] fix private repository tests for Solaris

---
 tests/runtests.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/runtests.sh b/tests/runtests.sh
index d2ffe72..2dbeedd 100755
--- a/tests/runtests.sh
+++ b/tests/runtests.sh
@@ -398,10 +398,10 @@ $compile -e embedded3.c embedded4.scm
 echo "======================================== private repository test ..."
 mkdir -p tmp
 $compile private-repository-test.scm -private-repository -o tmp/xxx
-tmp/xxx $PWD/tmp
-PATH=$PWD/tmp:$PATH xxx $PWD/tmp
+tmp/xxx ${TEST_DIR}/tmp
+PATH=${TEST_DIR}/tmp:$PATH xxx ${TEST_DIR}/tmp
 # this may crash, if the PATH contains a non-matching libchicken.dll on Windows:
-#PATH=$PATH:$PWD/tmp xxx $PWD/tmp
+#PATH=$PATH:${TEST_DIR}/tmp xxx ${TEST_DIR}/tmp
 rm -fr rev-app rev-app-2 reverser/*.import.* reverser/*.so
 
 echo "======================================== reinstall tests"
-- 
1.8.4.3

_______________________________________________
Chicken-users mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to