bug#24677: Failure in automatic tests for guile 2.0.13

2017-03-01 Thread Andy Wingo
On Wed 12 Oct 2016 18:49, Russell Rezaian  writes:

> Hello,
>
> Have just been building guile 2.0.13 on a small collection of Macs. Several 
> different OS versions.
>
> Compile completes successfully.
>
> When I run make check, however, I get an error:
>
> with GUILE_LOAD_PATH=/Users/rjr/Documents/build/guile-2.0.13/test-suite
> Running 00-initial-env.test
> Running 00-repl-server.test
> FAIL: check-guile

I believe I have fixed this.  The problem was that in Guile builds
without threads, the REPL server tests should not be run.  Additionally
these tests were failing to ignore SIGPIPE.

Thanks for the report,

Andy





bug#24677: Failure in automatic tests for guile 2.0.13

2017-03-01 Thread Andy Wingo
On Wed 12 Oct 2016 18:49, Russell Rezaian  writes:

> Have just been building guile 2.0.13 on a small collection of Macs. Several 
> different OS versions.
>
> Compile completes successfully.
>
> When I run make check, however, I get an error:
>
> with GUILE_LOAD_PATH=/Users/rjr/Documents/build/guile-2.0.13/test-suite
> Running 00-initial-env.test
> Running 00-repl-server.test
> FAIL: check-guile

I get an error too here on a GNU system; it just dies with error code
141.  Grumble!

Andy





bug#24677: Failure in automatic tests for guile 2.0.13

2017-01-02 Thread Matt Wette
This may be related to the following, in which I have posted some fixes:

https://debbugs.gnu.org/cgi/bugreport.cgi?bug=24862 





bug#24677: Failure in automatic tests for guile 2.0.13

2016-11-18 Thread Matt Wette
I did a make check, Mac OS Sierra, and saw it crash too.  

$ cd test-suite/lalr
$ ../../meta/guile 
...
scheme@(guile-user)> (load "test-lr-basics-01.scm")
ERROR: In procedure #:
ERROR: Wrong type to apply: #

Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
scheme@(guile-user) [1]> 


modules/system/base/lalr.upstream.scm contains the following:

(define-record-type lexical-token
  (make-lexical-token category source value)
  lexical-token?
  (category lexical-token-category)
  (source   lexical-token-source)
  (valuelexical-token-value))




bug#24677: Failure in automatic tests for guile 2.0.13

2016-10-12 Thread Russell Rezaian
Hello,

Have just been building guile 2.0.13 on a small collection of Macs. 
Several different OS versions.

Compile completes successfully.

When I run make check, however, I get an error:

with GUILE_LOAD_PATH=/Users/rjr/Documents/build/guile-2.0.13/test-suite
Running 00-initial-env.test
Running 00-repl-server.test
FAIL: check-guile
==
1 of 1 test failed
Please report to bug-guile@gnu.org
==


Guile 2.0.12 has successfully compiled and passed auto-checks on all of
these platforms.
--
Russell