Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-31 Thread Robert P. Goldman
Faré wrote: : rpg >>> : fare >> : rpg > >>> You're discussing the behavior of a file that isn't checked in; >> No, this file is checked in, and you should see these results if you run >> the test suite after pulling master from cl.net. >> > OK, I might have been looking at the wrong plac

Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-31 Thread Faré
>>>: rpg >>: fare >: rpg >>> How do you distinguish between the build failing and succeeding but >>> being followed by an error signal? >>> >> Nothing in ASDF should cause an error signal at the end of the W-C-U. > > I think I'm misunderstanding the following from your previous message: > > "if d

Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-31 Thread Robert P. Goldman
Faré wrote: > On Wed, Oct 29, 2014 at 11:40 PM, Robert P. Goldman > wrote: >> #P"/Users/rpg/lisp/asdf/build/fasls/sbcl-1.2.0-macosx-x64/asdf/test/fun-with-undefined-locals.fasl" >> >> ; file: /Users/rpg/lisp/asdf/test/fun-with-undefined-locals.lisp >> ; in: DEFUN FUN-WITH-UNDEFINED-LOCALS-PACKAGE

Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-30 Thread Faré
On Wed, Oct 29, 2014 at 11:40 PM, Robert P. Goldman wrote: > #P"/Users/rpg/lisp/asdf/build/fasls/sbcl-1.2.0-macosx-x64/asdf/test/fun-with-undefined-locals.fasl" > > ; file: /Users/rpg/lisp/asdf/test/fun-with-undefined-locals.lisp > ; in: DEFUN FUN-WITH-UNDEFINED-LOCALS-PACKAGE::FOO > ; (+ FUN-

Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-29 Thread Robert P. Goldman
Faré wrote: > When I try to reproduce compilation of Ilya's system (renaming it > undef-var, to prevent any clash) using > sbcl-1.2.3.62-989a1d6-linux-x64, it "works" exactly as expected: > > 1- if deferred warnings are disabled (the default), then the > compilation succeeds, and I get an undefine

Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-29 Thread Faré
When I try to reproduce compilation of Ilya's system (renaming it undef-var, to prevent any clash) using sbcl-1.2.3.62-989a1d6-linux-x64, it "works" exactly as expected: 1- if deferred warnings are disabled (the default), then the compilation succeeds, and I get an undefined variable warning at th

Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-29 Thread Ilya Perminov
I figured out my problem: my code was not calling (enable-deferred-warnings-check). Sorry for the noise. I was not even aware of ENABLE-DEFERRED-WARNINGS-CHECK. What is the reason for suppressing defer-able warnings by default? As far as I understand the distinction between normal and deferred war

Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-29 Thread Ilya Perminov
"Robert P. Goldman" writes: > I cannot replicate this, but this may be a new behavior introduced by > recent changes to SBCL, and I'm not on the latest release yet. Very strange. I can reproduce the problem with all the SBCL versions I have: 1.1.4, 1.1.18, 1.2.4. SBCL 1.2.4 includes the latest ve

Re: [Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-29 Thread Robert P. Goldman
Ilya Perminov wrote: > Hi, > > ASDF does not raise an error, when the SBCL compiler produces > warnings (e.g. "undefined variable", "undefined function"). > Example: > test.asd = > (defsystem :test > :version "1.0" > :components ((:file "test"))) > test.lisp

[Asdf-devel] ASDF does not signal deferred non-style warnings as an error

2014-10-29 Thread Ilya Perminov
Hi, ASDF does not raise an error, when the SBCL compiler produces warnings (e.g. "undefined variable", "undefined function"). Example: test.asd = (defsystem :test :version "1.0" :components ((:file "test"))) test.lisp (defun foo () (+ a b)) ==