unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Jan Nieuwenhuizen <janneke@gnu.org>
To: Matt Wette <matt.wette@gmail.com>
Cc: guile-user@gnu.org
Subject: Re: Nyacc patches for Mes to avoid bundling?
Date: Fri, 12 May 2017 08:00:01 +0200	[thread overview]
Message-ID: <87k25mvcm6.fsf@gnu.org> (raw)
In-Reply-To: <BC5E41DB-F467-4806-997C-A22EDCE0DDAF@gmail.com> (Matt Wette's message of "Thu, 11 May 2017 20:52:56 -0700")

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

Matt Wette writes:

>> Got it.  Will add fixes.  Should show up in release after 0.78.1.
>> 
>
> 0.78.2 released
>
> `make check' now works

Thanks!  Almost there...I need the attached patch.  Wondering why I need -L test-suite?

Also Not sure why the commenting-out of the make rule with only the
first line does not work for me.

    $ make --version
    GNU Make 4.2.1
    $ bash --version
    GNU bash, version 4.4.12(1)-release (x86_64-unknown-linux-gnu)

janneke


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-check-Set-load-path-disable-auto-compile-typo.patch --]
[-- Type: text/x-patch, Size: 2258 bytes --]

From 445540556f642a6f15ffef276a8fe69801ebbb86 Mon Sep 17 00:00:00 2001
From: Jan Nieuwenhuizen <janneke@gnu.org>
Date: Fri, 12 May 2017 07:26:49 +0200
Subject: [PATCH] check: Set load-path, disable auto-compile, typo.

* test-suite/nyacc/Makefile.nyacc (TEST_ENVIRONMENT): Set load-path,
  disable auto-compile.  Fixes loading (test-suite lib).  Fixes
  attempt to write in $HOME on Guix build.
* test-suite/nyacc/lang/Makefile.nyacc (TESTS_ENVIRONMENT): Likewise.
* test-suite/nyacc/lang/c99/Makefile.nyacc (check-TESTS): Comment-out
  all lines.
---
 Makefile.in                              | 1 +
 test-suite/nyacc/Makefile.nyacc          | 2 +-
 test-suite/nyacc/lang/Makefile.nyacc     | 2 +-
 test-suite/nyacc/lang/c99/Makefile.nyacc | 4 ++--
 4 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index bb3c213..5c7a366 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -31,3 +31,4 @@ check:
 	(cd test-suite/nyacc; make -f Makefile.nyacc check)
 
 # --- last line ---
+
diff --git a/test-suite/nyacc/Makefile.nyacc b/test-suite/nyacc/Makefile.nyacc
index c52b8aa..0540b11 100644
--- a/test-suite/nyacc/Makefile.nyacc
+++ b/test-suite/nyacc/Makefile.nyacc
@@ -10,7 +10,7 @@
 SUBDIRS = lang
 
 TESTS_ENVIRONMENT = \
-	guile -L `pwd`/../../module
+	guile -L `pwd`/../../module -L `pwd`/.. --no-auto-compile
 
 TESTS = \
 	lex-01.test				\
diff --git a/test-suite/nyacc/lang/Makefile.nyacc b/test-suite/nyacc/lang/Makefile.nyacc
index 0a3167b..61342ca 100644
--- a/test-suite/nyacc/lang/Makefile.nyacc
+++ b/test-suite/nyacc/lang/Makefile.nyacc
@@ -10,7 +10,7 @@
 SUBDIRS = c99
 
 TESTS_ENVIRONMENT = \
-	guile -L `pwd`/../../../module
+	guile -L `pwd`/../../../module -L `pwd`/../.. --no-auto-compile
 
 TESTS = \
 	util.test				\
diff --git a/test-suite/nyacc/lang/c99/Makefile.nyacc b/test-suite/nyacc/lang/c99/Makefile.nyacc
index d6be58e..974fe9e 100644
--- a/test-suite/nyacc/lang/c99/Makefile.nyacc
+++ b/test-suite/nyacc/lang/c99/Makefile.nyacc
@@ -27,7 +27,7 @@ check-TESTS: $(TESTS)
 		$(TESTS_ENVIRONMENT) $$test; \
 	done
 	@#for dir in $(SUBDIRS); do \
-		(cd $$dir; make -f Makefile.nyacc check-TESTS); \
-	done
+	#	(cd $$dir; make -f Makefile.nyacc check-TESTS); \
+	#done
 
 # --- last line ---
-- 
2.12.2


[-- Attachment #3: Type: text/plain, Size: 154 bytes --]


-- 
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | Avatar®  http://AvatarAcademy.nl  

  reply	other threads:[~2017-05-12  6:00 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-03 17:59 Nyacc patches for Mes to avoid bundling? Jan Nieuwenhuizen
2017-05-04  0:07 ` Matt Wette
2017-05-05  2:09   ` Matt Wette
2017-05-05  6:07     ` Jan Nieuwenhuizen
2017-05-05 12:44       ` Matt Wette
2017-05-05 13:33         ` Jan Nieuwenhuizen
2017-05-05 22:59           ` Matt Wette
2017-05-06 15:21             ` Matt Wette
2017-05-06 16:00               ` Jan Nieuwenhuizen
2017-05-06 16:21                 ` Matt Wette
2017-05-06 16:33                   ` Jan Nieuwenhuizen
2017-05-07  7:54                     ` Jan Nieuwenhuizen
2017-05-07 14:16                       ` Matt Wette
2017-05-08 15:37                         ` Jan Nieuwenhuizen
2017-05-10 21:01                           ` Jan Nieuwenhuizen
2017-05-11  0:21                             ` Matt Wette
2017-05-12  3:52                               ` Matt Wette
2017-05-12  6:00                                 ` Jan Nieuwenhuizen [this message]
2017-05-12 15:10                                   ` Matt Wette
2017-05-05 13:19 ` Ludovic Courtès
2017-05-05 19:56   ` Jan Nieuwenhuizen
2017-05-05 20:22     ` Ludovic Courtès
2017-05-06 15:49       ` Jan Nieuwenhuizen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87k25mvcm6.fsf@gnu.org \
    --to=janneke@gnu.org \
    --cc=guile-user@gnu.org \
    --cc=matt.wette@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).