unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* make check
@ 2015-11-29 22:34 Fabrice Popineau
  2015-11-30  3:32 ` Eli Zaretskii
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Fabrice Popineau @ 2015-11-29 22:34 UTC (permalink / raw)
  To: Emacs developers

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

Hi,

Is there any reason why `make check' on the master branch stopped working ?
Or is it only me ?

make[1] : on entre dans le répertoire « /c/source/emacs/build-x64/test »
make[2] : on entre dans le répertoire « /c/source/emacs/build-x64/test »
make[2]: ***  Aucune règle pour fabriquer la cible «
../../emacs/test/lisp/abbrev-tests.log », nécessaire pour « check-maybe ».
Arrêt.
make[2] : on quitte le répertoire « /c/source/emacs/build-x64/test »

It is telling me that there is no rule for making the target
 ../../emacs/test/lisp/abbrev-tests.log

What am I missing ?

Thanks in advance,

Fabrice

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

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

* Re: make check
  2015-11-29 22:34 make check Fabrice Popineau
@ 2015-11-30  3:32 ` Eli Zaretskii
  2015-11-30 10:52 ` Phillip Lord
  2015-11-30 21:00 ` Stephen Leake
  2 siblings, 0 replies; 11+ messages in thread
From: Eli Zaretskii @ 2015-11-30  3:32 UTC (permalink / raw)
  To: Fabrice Popineau; +Cc: emacs-devel

> From: Fabrice Popineau <fabrice.popineau@gmail.com>
> Date: Sun, 29 Nov 2015 23:34:19 +0100
> 
> Is there any reason why `make check' on the master branch stopped working ?

The directory structure there was changed.

> Or is it only me ?

I don't know, I work only in the emacs-25 branch lately.  Master can
wait.



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

* Re: make check
  2015-11-29 22:34 make check Fabrice Popineau
  2015-11-30  3:32 ` Eli Zaretskii
@ 2015-11-30 10:52 ` Phillip Lord
  2015-11-30 21:00 ` Stephen Leake
  2 siblings, 0 replies; 11+ messages in thread
From: Phillip Lord @ 2015-11-30 10:52 UTC (permalink / raw)
  To: Fabrice Popineau; +Cc: Emacs developers

Fabrice Popineau <fabrice.popineau@gmail.com> writes:
> Is there any reason why `make check' on the master branch stopped working ?
> Or is it only me ?
>
> make[1] : on entre dans le répertoire « /c/source/emacs/build-x64/test »
> make[2] : on entre dans le répertoire « /c/source/emacs/build-x64/test »
> make[2]: ***  Aucune règle pour fabriquer la cible «
> ../../emacs/test/lisp/abbrev-tests.log », nécessaire pour « check-maybe ».
> Arrêt.
> make[2] : on quitte le répertoire « /c/source/emacs/build-x64/test »
>
> It is telling me that there is no rule for making the target
>  ../../emacs/test/lisp/abbrev-tests.log
>
> What am I missing ?


Probably my commit 75336a29460752700e4e424a9c7aa932cc237689.

I changed the location of the test files and the Makefiles. It looks to
me like your Makefile has not been regenerated. Can you try ./configure?
Or if that fails a clean build?

Phil



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

* Re: make check
  2015-11-29 22:34 make check Fabrice Popineau
  2015-11-30  3:32 ` Eli Zaretskii
  2015-11-30 10:52 ` Phillip Lord
@ 2015-11-30 21:00 ` Stephen Leake
  2015-11-30 21:06   ` Fabrice Popineau
  2015-11-30 22:10   ` Phillip Lord
  2 siblings, 2 replies; 11+ messages in thread
From: Stephen Leake @ 2015-11-30 21:00 UTC (permalink / raw)
  To: Fabrice Popineau; +Cc: Emacs developers

Fabrice Popineau <fabrice.popineau@gmail.com> writes:

> Hi,
>
> Is there any reason why `make check' on the master branch stopped working ?
> Or is it only me ?
>
> make[1] : on entre dans le répertoire « /c/source/emacs/build-x64/test »
> make[2] : on entre dans le répertoire « /c/source/emacs/build-x64/test »
> make[2]: ***  Aucune règle pour fabriquer la cible «
> ../../emacs/test/lisp/abbrev-tests.log », nécessaire pour « check-maybe ».
> Arrêt.
> make[2] : on quitte le répertoire « /c/source/emacs/build-x64/test »
>
> It is telling me that there is no rule for making the target
>  ../../emacs/test/lisp/abbrev-tests.log
>
> What am I missing ?

I get a similar error.

It looks like you are building outside the source tree, as I do; I think
that is broken due to the recent changes in test directory structure.

I'll probably get to fixing it this week, if Phillip doesn't beat me to it.

-- 
-- Stephe



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

* Re: make check
  2015-11-30 21:00 ` Stephen Leake
@ 2015-11-30 21:06   ` Fabrice Popineau
  2015-11-30 22:10   ` Phillip Lord
  1 sibling, 0 replies; 11+ messages in thread
From: Fabrice Popineau @ 2015-11-30 21:06 UTC (permalink / raw)
  To: Stephen Leake; +Cc: Emacs developers

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

2015-11-30 22:00 GMT+01:00 Stephen Leake <stephen_leake@stephe-leake.org>:

>
> It looks like you are building outside the source tree, as I do; I think
> that is broken due to the recent changes in test directory structure.
>

Yes.

>
> I'll probably get to fixing it this week, if Phillip doesn't beat me to it.
>
>
Thanks, I'll wait for it.

Best regards,

Fabrice

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

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

* Re: make check
  2015-11-30 21:00 ` Stephen Leake
  2015-11-30 21:06   ` Fabrice Popineau
@ 2015-11-30 22:10   ` Phillip Lord
  2015-12-01  5:53     ` Stephen Leake
  1 sibling, 1 reply; 11+ messages in thread
From: Phillip Lord @ 2015-11-30 22:10 UTC (permalink / raw)
  To: Stephen Leake; +Cc: Fabrice Popineau, Emacs developers

Stephen Leake <stephen_leake@stephe-leake.org> writes:

> Fabrice Popineau <fabrice.popineau@gmail.com> writes:
>
>> Is there any reason why `make check' on the master branch stopped working ?
>> Or is it only me ?
>>
>> make[1] : on entre dans le répertoire « /c/source/emacs/build-x64/test »
>> make[2] : on entre dans le répertoire « /c/source/emacs/build-x64/test »
>> make[2]: ***  Aucune règle pour fabriquer la cible «
>> ../../emacs/test/lisp/abbrev-tests.log », nécessaire pour « check-maybe ».
>> Arrêt.
>> make[2] : on quitte le répertoire « /c/source/emacs/build-x64/test »
>>
>> It is telling me that there is no rule for making the target
>>  ../../emacs/test/lisp/abbrev-tests.log
>>
>> What am I missing ?
>
> I get a similar error.
>
> It looks like you are building outside the source tree, as I do; I think
> that is broken due to the recent changes in test directory structure.

Confused. How do I replicate this?

> I'll probably get to fixing it this week, if Phillip doesn't beat me to it.

I won't if I can't get it to break!

Phil




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

* Re: make check
  2015-11-30 22:10   ` Phillip Lord
@ 2015-12-01  5:53     ` Stephen Leake
  2015-12-02 12:07       ` Phillip Lord
  0 siblings, 1 reply; 11+ messages in thread
From: Stephen Leake @ 2015-12-01  5:53 UTC (permalink / raw)
  To: Phillip Lord; +Cc: Fabrice Popineau, Emacs developers

phillip.lord@russet.org.uk (Phillip Lord) writes:

>> It looks like you are building outside the source tree, as I do; I think
>> that is broken due to the recent changes in test directory structure.
>
> Confused. How do I replicate this?

git clone ... master

cd master

./autogen.sh

cd ..

mkdir master-build

cd master-build

../master/configure

make check


This allows using the same source tree for different builds with
different compilers/options. I often maintain a debug and no-debug build
for the branch I'm working on.

-- 
-- Stephe



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

* Re: make check
  2015-12-01  5:53     ` Stephen Leake
@ 2015-12-02 12:07       ` Phillip Lord
  2015-12-02 20:27         ` Stephen Leake
  0 siblings, 1 reply; 11+ messages in thread
From: Phillip Lord @ 2015-12-02 12:07 UTC (permalink / raw)
  To: Stephen Leake; +Cc: Fabrice Popineau, Emacs developers

Stephen Leake <stephen_leake@stephe-leake.org> writes:

> phillip.lord@russet.org.uk (Phillip Lord) writes:
>
>>> It looks like you are building outside the source tree, as I do; I think
>>> that is broken due to the recent changes in test directory structure.
>>
>> Confused. How do I replicate this?
>
> git clone ... master
>
> cd master
>
> ./autogen.sh
>
> cd ..
>
> mkdir master-build
>
> cd master-build
>
> ../master/configure
>
> make check
>
>
> This allows using the same source tree for different builds with
> different compilers/options. I often maintain a debug and no-debug build
> for the branch I'm working on.


Well, there you go, didn't know that you could do this.

I've just push a commit which (hopefully) fixes this and (hopefully)
doesn't break the more normal build.

Phil



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

* Re: make check
  2015-12-02 12:07       ` Phillip Lord
@ 2015-12-02 20:27         ` Stephen Leake
  2015-12-02 21:09           ` Fabrice Popineau
  0 siblings, 1 reply; 11+ messages in thread
From: Stephen Leake @ 2015-12-02 20:27 UTC (permalink / raw)
  To: Phillip Lord; +Cc: Fabrice Popineau, Emacs developers

phillip.lord@russet.org.uk (Phillip Lord) writes:

> Stephen Leake <stephen_leake@stephe-leake.org> writes:
>
>> phillip.lord@russet.org.uk (Phillip Lord) writes:
>>
>>>> It looks like you are building outside the source tree, as I do; I think
>>>> that is broken due to the recent changes in test directory structure.
>>>
>>> Confused. How do I replicate this?
>>
>> git clone ... master
>>
>> cd master
>>
>> ./autogen.sh
>>
>> cd ..
>>
>> mkdir master-build
>>
>> cd master-build
>>
>> ../master/configure
>>
>> make check
>>
>>
>> This allows using the same source tree for different builds with
>> different compilers/options. I often maintain a debug and no-debug build
>> for the branch I'm working on.
>
>
> Well, there you go, didn't know that you could do this.
>
> I've just push a commit which (hopefully) fixes this and (hopefully)
> doesn't break the more normal build.

I just updated master; 'make check' works for me.

Windows 8/MinGW, out of tree build.

-- 
-- Stephe



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

* Re: make check
  2015-12-02 20:27         ` Stephen Leake
@ 2015-12-02 21:09           ` Fabrice Popineau
  2015-12-02 21:35             ` Phillip Lord
  0 siblings, 1 reply; 11+ messages in thread
From: Fabrice Popineau @ 2015-12-02 21:09 UTC (permalink / raw)
  To: Stephen Leake; +Cc: Emacs developers, Phillip Lord

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

2015-12-02 21:27 GMT+01:00 Stephen Leake <stephen_leake@stephe-leake.org>:

> phillip.lord@russet.org.uk (Phillip Lord) writes:
>
> > Stephen Leake <stephen_leake@stephe-leake.org> writes:
> >
>
> > I've just push a commit which (hopefully) fixes this and (hopefully)
> > doesn't break the more normal build.
>
> I just updated master; 'make check' works for me.
>
> Windows 8/MinGW, out of tree build.
>
>
Great ! Thanks to Stephen and Phillip

Fabrice

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

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

* Re: make check
  2015-12-02 21:09           ` Fabrice Popineau
@ 2015-12-02 21:35             ` Phillip Lord
  0 siblings, 0 replies; 11+ messages in thread
From: Phillip Lord @ 2015-12-02 21:35 UTC (permalink / raw)
  To: Fabrice Popineau; +Cc: Stephen Leake, Emacs developers

Fabrice Popineau <fabrice.popineau@gmail.com> writes:

> 2015-12-02 21:27 GMT+01:00 Stephen Leake <stephen_leake@stephe-leake.org>:
>
>> phillip.lord@russet.org.uk (Phillip Lord) writes:
>>
>> > Stephen Leake <stephen_leake@stephe-leake.org> writes:
>> >
>>
>> > I've just push a commit which (hopefully) fixes this and (hopefully)
>> > doesn't break the more normal build.
>>
>> I just updated master; 'make check' works for me.
>>
>> Windows 8/MinGW, out of tree build.
>>
>>
> Great ! Thanks to Stephen and Phillip


Thanks for testing, and apologies for breaking your build.

Phil



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

end of thread, other threads:[~2015-12-02 21:35 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-29 22:34 make check Fabrice Popineau
2015-11-30  3:32 ` Eli Zaretskii
2015-11-30 10:52 ` Phillip Lord
2015-11-30 21:00 ` Stephen Leake
2015-11-30 21:06   ` Fabrice Popineau
2015-11-30 22:10   ` Phillip Lord
2015-12-01  5:53     ` Stephen Leake
2015-12-02 12:07       ` Phillip Lord
2015-12-02 20:27         ` Stephen Leake
2015-12-02 21:09           ` Fabrice Popineau
2015-12-02 21:35             ` Phillip Lord

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).