unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* bug#24677: Failure in automatic tests for guile 2.0.13
@ 2016-10-12 16:49 Russell Rezaian
  2016-11-18 23:00 ` Matt Wette
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Russell Rezaian @ 2016-10-12 16:49 UTC (permalink / raw)
  To: 24677

[-- Attachment #1: Type: text/plain, Size: 588 bytes --]

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


[-- Attachment #2: Type: text/html, Size: 1073 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#24677: Failure in automatic tests for guile 2.0.13
  2016-10-12 16:49 bug#24677: Failure in automatic tests for guile 2.0.13 Russell Rezaian
@ 2016-11-18 23:00 ` Matt Wette
  2017-01-03  2:02 ` Matt Wette
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Matt Wette @ 2016-11-18 23:00 UTC (permalink / raw)
  To: 24677

[-- Attachment #1: Type: text/plain, Size: 654 bytes --]

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 #<syntax-transformer make-lexical-token>:
ERROR: Wrong type to apply: #<syntax-transformer make-lexical-token>

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)
  (value    lexical-token-value))



[-- Attachment #2: Type: text/html, Size: 4776 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#24677: Failure in automatic tests for guile 2.0.13
  2016-10-12 16:49 bug#24677: Failure in automatic tests for guile 2.0.13 Russell Rezaian
  2016-11-18 23:00 ` Matt Wette
@ 2017-01-03  2:02 ` Matt Wette
  2017-03-01 11:01 ` Andy Wingo
  2017-03-01 11:35 ` Andy Wingo
  3 siblings, 0 replies; 5+ messages in thread
From: Matt Wette @ 2017-01-03  2:02 UTC (permalink / raw)
  To: 24677

[-- Attachment #1: Type: text/plain, Size: 187 bytes --]

This may be related to the following, in which I have posted some fixes:

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



[-- Attachment #2: Type: text/html, Size: 550 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#24677: Failure in automatic tests for guile 2.0.13
  2016-10-12 16:49 bug#24677: Failure in automatic tests for guile 2.0.13 Russell Rezaian
  2016-11-18 23:00 ` Matt Wette
  2017-01-03  2:02 ` Matt Wette
@ 2017-03-01 11:01 ` Andy Wingo
  2017-03-01 11:35 ` Andy Wingo
  3 siblings, 0 replies; 5+ messages in thread
From: Andy Wingo @ 2017-03-01 11:01 UTC (permalink / raw)
  To: Russell Rezaian; +Cc: 24677

On Wed 12 Oct 2016 18:49, Russell Rezaian <rrezaian@mac.com> 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





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#24677: Failure in automatic tests for guile 2.0.13
  2016-10-12 16:49 bug#24677: Failure in automatic tests for guile 2.0.13 Russell Rezaian
                   ` (2 preceding siblings ...)
  2017-03-01 11:01 ` Andy Wingo
@ 2017-03-01 11:35 ` Andy Wingo
  3 siblings, 0 replies; 5+ messages in thread
From: Andy Wingo @ 2017-03-01 11:35 UTC (permalink / raw)
  To: Russell Rezaian; +Cc: 24677-done

On Wed 12 Oct 2016 18:49, Russell Rezaian <rrezaian@mac.com> 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





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-03-01 11:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-12 16:49 bug#24677: Failure in automatic tests for guile 2.0.13 Russell Rezaian
2016-11-18 23:00 ` Matt Wette
2017-01-03  2:02 ` Matt Wette
2017-03-01 11:01 ` Andy Wingo
2017-03-01 11:35 ` Andy Wingo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).