<div dir="ltr"><div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px"><br></span></div><div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">Fare wrote:</span></div><div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">> </span></div>
<div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">> The test-bundle.script output suggests that, on Windows, there might</span><br style="font-family:arial,sans-serif;font-size:12.800000190734863px">
<span style="font-family:arial,sans-serif;font-size:12.800000190734863px">> be a bug in ccl:fasl-concatenate. Please create a reduced test, and</span><br style="font-family:arial,sans-serif;font-size:12.800000190734863px">
<span style="font-family:arial,sans-serif;font-size:12.800000190734863px">> open a bug against CCL if that is indeed the case, using</span><br style="font-family:arial,sans-serif;font-size:12.800000190734863px">> <a href="http://trac.clozure.com/ccl/newticket" target="_blank" style="font-family:arial,sans-serif;font-size:12.800000190734863px">http://trac.clozure.com/ccl/newticket</a><br>
</div><div>> </div><div><br></div><div>Ok, I went ahead and opened a CCL bug, which was (almost immediately) reported as fixed in the subversion trunk and the ticket (#1109) was closed. Then I built a CCL from the trunk (which is 1.10-dev), and indeed this failure goes away when using 1.10-dev. See the results in the 2013-09-05 folder in the link below. </div>
<div><br></div><div><br></div><div>> </div><div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">> The test-multiple.script failure reveals an error in run-program, that</span></div><div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">> looks like it does a (cons "cmd" argument) instead of a (list "cmd"</span></div>
<div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">> argument). Same failure in test-run-program.script.</span></div><div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">> </span></div>
<div><span style="font-family:arial,sans-serif;font-size:12.800000190734863px"><br></span></div><div><font face="arial, sans-serif">I tried changing the code in uiop/run-program.lisp from:</font></div><div><font face="arial, sans-serif"><br>
</font></div><div><font face="arial, sans-serif">  #+clozure (cons "cmd" (strcat "/c" command))   </font></div><div><font face="arial, sans-serif"><br></font></div><div><font face="arial, sans-serif">to</font></div>
<div><font face="arial, sans-serif"><br></font></div><div><font face="arial, sans-serif">   #+clozure (list "cmd" (strcat "/c" command))</font></div><div><font face="arial, sans-serif"><br></font></div>
<div><font face="arial, sans-serif"><br></font></div><div><font face="arial, sans-serif">but still get some failures in test-run-program.script. Maybe they are different failures.  See results below. </font></div><div><br>
</div><div><a href="https://www.dropbox.com/sh/jc2cqwpkp06dupm/1FZ_YlVvVW/cl/tests/asdf/output">https://www.dropbox.com/sh/jc2cqwpkp06dupm/1FZ_YlVvVW/cl/tests/asdf/output</a></div><div><br></div><div><br></div><div>By the way, the run-program tests seem to use the command "ln" for testing -- this command isn't there by default on Windows, is it?</div>
<div><br></div><div><br></div><div><br></div><div>The issue with ";" vs. ":" for path separator I'm not sure exactly where to fix, so I leave that alone for the time being (anyone else care to jump on it?) --- apparently that's not CCL-specific, but a general Windows asdf testing issue?</div>
<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Sep 4, 2013 at 5:07 PM, Robert P. Goldman <span dir="ltr"><<a href="mailto:rpgoldman@sift.info" target="_blank">rpgoldman@sift.info</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">Dave Cooper wrote:<br>
><br>
> Hi Robert,<br>
><br>
>  [also cc'ing this to asdf-devel in case anyone else has feedback]<br>
><br>
> Ok, shifting gears a little bit here first...<br>
><br>
> I'm trying a few test runs of the ASDF test suite on Windows. Platforms<br>
> on Windows which I have available to test right now are: Allegro CL<br>
> (several variations), and CCL.<br>
><br>
> To prepare to run the tests on Windows, I installed cygwin and cygwin's<br>
> make. Then to run the tests, I do (for lack of having this more<br>
> automated so far):<br>
><br>
> 1.  set ASDF_TEST_LISPS appropriately.<br>
><br>
> 2. Edit run-tests.sh to point to appropriate Lisp executables.<br>
<br>
</div>You actually shouldn't need to do that -- there is one environment<br>
variable for each of the executables, and you can set those, if the<br>
default values don't work for you.<br>
<div class="im"><br>
><br>
> 3  Invoke "make test-all-no-upgrade" from the cygwin command shell.<br>
><br>
> Let's try CCL first.  Here are the outputs:<br>
><br>
> <a href="https://www.dropbox.com/sh/jc2cqwpkp06dupm/-vvd5gFwTk/cl/tests/asdf/output/2013-09-04/windows/ccl-1.9-f96-win-x86/ccl.text" target="_blank">https://www.dropbox.com/sh/jc2cqwpkp06dupm/-vvd5gFwTk/cl/tests/asdf/output/2013-09-04/windows/ccl-1.9-f96-win-x86/ccl.text</a><br>

><br>
> Summary: 42 out of 47 pass (5 failures).<br>
><br>
> I can try to dive into these further, but I thought I would post the<br>
> results here first in case anything is obvious to anyone.<br>
><br>
> Incidentally, I have been running ASDF in production with Allegro CL for<br>
> some time now (including asdf:monolithic-fasl-op) and it has been<br>
> working well.  There are some startup glitches for running ASDF tests on<br>
> Windows/Allegro right now. After the CCL issue is resolved I will return<br>
> to trying to get the tests to run for Allegro on Windows.<br>
</div>That would be great.<br>
<br>
By the way, the bundle tests aren't working for me on a couple of other<br>
lisps.<br>
<br>
cheers,<br>
r<br>
<br>
<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>My Best,<br><br>Dave Cooper, Genworks Support<br><a href="mailto:david.cooper@genworks.com">david.cooper@genworks.com</a>, <a href="http://dave.genworks.com">dave.genworks.com</a>(skype)<br>
USA: 248-327-3253(o), 1-248-330-2979(mobile)<br>UK: 0191 645 1699<br>
</div></div>