public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* make -k check error
@ 2014-01-17 17:34 Prathamesh Kulkarni
  2014-01-17 18:57 ` Ian Lance Taylor
  0 siblings, 1 reply; 4+ messages in thread
From: Prathamesh Kulkarni @ 2014-01-17 17:34 UTC (permalink / raw)
  To: gcc-help

Hi, after building gcc-4.9.0 with make bootstrap, i ran
make -k check and got the following error (make bootstrap, make
install work smoothly):

make[3]: [check-parallel-gcc] Error 1 (ignored)
make[4]: *** [check-DEJAGNU] Error 1
make[3]: *** [check-am] Error 2
make[3]: Target `check' not remade because of errors.
make[2]: *** [check-recursive] Error 1
make[2]: Target `check' not remade because of errors.
make[1]: *** [check-target-libjava] Error 2
make[4]: *** [check-DEJAGNU] Error 1
make[3]: *** [check-am] Error 2
make[3]: Target `check' not remade because of errors.
make[2]: *** [check-recursive] Error 1
make[2]: Target `check' not remade because of errors.
make[1]: *** [check-target-libgomp] Error 2
make[1]: Target `check-target' not remade because of errors.
make: *** [do-check] Error 2
make: Target `check' not remade because of errors.

gcc -v:
Using built-in specs.
COLLECT_GCC=./gcc
COLLECT_LTO_WRAPPER=/home/bilbo/gcc-projects/gcc/install/libexec/gcc/x86_64-unknown-linux-gnu/4.9.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../src/configure --prefix=/home/bilbo/gcc-projects/gcc/install
Thread model: posix
gcc version 4.9.0 20140115 (experimental) (GCC)

Thanks and Regards,
Prathamesh

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

* Re: make -k check error
  2014-01-17 17:34 make -k check error Prathamesh Kulkarni
@ 2014-01-17 18:57 ` Ian Lance Taylor
  2014-01-17 19:01   ` David Kredba
  0 siblings, 1 reply; 4+ messages in thread
From: Ian Lance Taylor @ 2014-01-17 18:57 UTC (permalink / raw)
  To: Prathamesh Kulkarni; +Cc: gcc-help

On Fri, Jan 17, 2014 at 9:33 AM, Prathamesh Kulkarni
<bilbotheelffriend@gmail.com> wrote:
> Hi, after building gcc-4.9.0 with make bootstrap, i ran
> make -k check and got the following error (make bootstrap, make
> install work smoothly):
>
> make[3]: [check-parallel-gcc] Error 1 (ignored)
> make[4]: *** [check-DEJAGNU] Error 1
> make[3]: *** [check-am] Error 2
> make[3]: Target `check' not remade because of errors.
> make[2]: *** [check-recursive] Error 1
> make[2]: Target `check' not remade because of errors.
> make[1]: *** [check-target-libjava] Error 2
> make[4]: *** [check-DEJAGNU] Error 1
> make[3]: *** [check-am] Error 2
> make[3]: Target `check' not remade because of errors.
> make[2]: *** [check-recursive] Error 1
> make[2]: Target `check' not remade because of errors.
> make[1]: *** [check-target-libgomp] Error 2
> make[1]: Target `check-target' not remade because of errors.
> make: *** [do-check] Error 2
> make: Target `check' not remade because of errors.

All this tells us is that some tests failed.  That is fairly normal.
You will have to actually look at the test failures to see what
happened.

Ian

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

* Re: make -k check error
  2014-01-17 18:57 ` Ian Lance Taylor
@ 2014-01-17 19:01   ` David Kredba
  2014-01-18  6:48     ` Prathamesh Kulkarni
  0 siblings, 1 reply; 4+ messages in thread
From: David Kredba @ 2014-01-17 19:01 UTC (permalink / raw)
  To: Ian Lance Taylor; +Cc: Prathamesh Kulkarni, gcc-help

You can use a contrib/test_summary script. Call it from build dir
pointing to a source dir. It formates the results nice way.
As the (B)book suggests you can compare results with gcc-test-results
mailing list.

2014/1/17 Ian Lance Taylor <iant@google.com>:
> On Fri, Jan 17, 2014 at 9:33 AM, Prathamesh Kulkarni
> <bilbotheelffriend@gmail.com> wrote:
>> Hi, after building gcc-4.9.0 with make bootstrap, i ran
>> make -k check and got the following error (make bootstrap, make
>> install work smoothly):
>>
>> make[3]: [check-parallel-gcc] Error 1 (ignored)
>> make[4]: *** [check-DEJAGNU] Error 1
>> make[3]: *** [check-am] Error 2
>> make[3]: Target `check' not remade because of errors.
>> make[2]: *** [check-recursive] Error 1
>> make[2]: Target `check' not remade because of errors.
>> make[1]: *** [check-target-libjava] Error 2
>> make[4]: *** [check-DEJAGNU] Error 1
>> make[3]: *** [check-am] Error 2
>> make[3]: Target `check' not remade because of errors.
>> make[2]: *** [check-recursive] Error 1
>> make[2]: Target `check' not remade because of errors.
>> make[1]: *** [check-target-libgomp] Error 2
>> make[1]: Target `check-target' not remade because of errors.
>> make: *** [do-check] Error 2
>> make: Target `check' not remade because of errors.
>
> All this tells us is that some tests failed.  That is fairly normal.
> You will have to actually look at the test failures to see what
> happened.
>
> Ian

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

* Re: make -k check error
  2014-01-17 19:01   ` David Kredba
@ 2014-01-18  6:48     ` Prathamesh Kulkarni
  0 siblings, 0 replies; 4+ messages in thread
From: Prathamesh Kulkarni @ 2014-01-18  6:48 UTC (permalink / raw)
  To: David Kredba, gcc-help

On Sat, Jan 18, 2014 at 12:31 AM, David Kredba
<nheghathivhistha@gmail.com> wrote:
> You can use a contrib/test_summary script. Call it from build dir
> pointing to a source dir. It formates the results nice way.
> As the (B)book suggests you can compare results with gcc-test-results
> mailing list.
Thanks for pointing it out.

>
> 2014/1/17 Ian Lance Taylor <iant@google.com>:
>> On Fri, Jan 17, 2014 at 9:33 AM, Prathamesh Kulkarni
>> <bilbotheelffriend@gmail.com> wrote:
>>> Hi, after building gcc-4.9.0 with make bootstrap, i ran
>>> make -k check and got the following error (make bootstrap, make
>>> install work smoothly):
>>>
>>> make[3]: [check-parallel-gcc] Error 1 (ignored)
>>> make[4]: *** [check-DEJAGNU] Error 1
>>> make[3]: *** [check-am] Error 2
>>> make[3]: Target `check' not remade because of errors.
>>> make[2]: *** [check-recursive] Error 1
>>> make[2]: Target `check' not remade because of errors.
>>> make[1]: *** [check-target-libjava] Error 2
>>> make[4]: *** [check-DEJAGNU] Error 1
>>> make[3]: *** [check-am] Error 2
>>> make[3]: Target `check' not remade because of errors.
>>> make[2]: *** [check-recursive] Error 1
>>> make[2]: Target `check' not remade because of errors.
>>> make[1]: *** [check-target-libgomp] Error 2
>>> make[1]: Target `check-target' not remade because of errors.
>>> make: *** [do-check] Error 2
>>> make: Target `check' not remade because of errors.
>>
>> All this tells us is that some tests failed.  That is fairly normal.
>> You will have to actually look at the test failures to see what
>> happened.
>>
>> Ian

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

end of thread, other threads:[~2014-01-18  6:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-17 17:34 make -k check error Prathamesh Kulkarni
2014-01-17 18:57 ` Ian Lance Taylor
2014-01-17 19:01   ` David Kredba
2014-01-18  6:48     ` Prathamesh Kulkarni

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