Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Michael Busch

On 3/23/10 2:12 PM, Yonik Seeley wrote:

On Tue, Mar 23, 2010 at 5:07 PM, Michael Busch  wrote:
   

OK I reran the tests sequentially with my LUCENE-2329 patch applied.  The
same test failed again:

[junit] Test org.apache.solr.client.solrj.embedded.JettyWebappTest FAILED


Everything else looks good.  So it should be ok to commit 2329?
 

Yeah, of course!  Heavy committing going on in solr tests ;-)

   


OK, done!

 Michael


-Yonik

-
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org


   



-
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org



Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Yonik Seeley
On Tue, Mar 23, 2010 at 5:07 PM, Michael Busch  wrote:
> OK I reran the tests sequentially with my LUCENE-2329 patch applied.  The
> same test failed again:
>
> [junit] Test org.apache.solr.client.solrj.embedded.JettyWebappTest FAILED
>
>
> Everything else looks good.  So it should be ok to commit 2329?

Yeah, of course!  Heavy committing going on in solr tests ;-)

-Yonik

-
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org



Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Mark Miller
If you do an update your issue should be resolved. This is something we 
ran into the other day as well, and have been solving it a bit at a time ;)


- Mark

On 03/23/2010 04:29 PM, Robert Muir wrote:

Yeah its a bit confusing... before, exceptions happening in other
threads were silently hidden.

Uwe fixed this in Lucene I think, and right now the verbosity is
cranked for Solr, too.
Yonik is hacking away at these tests to quiet the ones that are "truly
expected" exceptions...

At least I think I got this right...

On Tue, Mar 23, 2010 at 4:26 PM, Michael Busch  wrote:
   

I see.  And all the other exceptions printed are expected?

  Michael

On 3/23/10 1:20 PM, Robert Muir wrote:
 

Thanks Michael, this isn't a parallel test problem at all, its a
sporatic problem with solr's jetty tests (the same problem I mentioned
in the previous response).

You might/will see this problem running the tests sequentially too.

Test org.apache.solr.client.solrj.embedded.JettyWebappTest FAILED

On Tue, Mar 23, 2010 at 4:15 PM, Michael Buschwrote:

   

Sorry for the lack of details.  Thought I had just not done an obvious
step.
Attached is the output from the Solr part.

Btw: This machine is a Solr virgin,  Solr never ran on it before.

  Michael

On 3/23/10 1:00 PM, Mark Miller wrote:

 

Robert very recently committed some stuff that parallelizes the solr
tests
that may need to be worked out in all cases still (if that is indeed the
problem here). A variety of devs have tested it, but there may be a
lingering issue?

No helpful errors printed above BUILD FAILED? The line the errors you
pasted gives is simply the line that fails the build if tests failed.

There is still a way to run them sequentially (as Hudson should be
doing)
that Robert should be able to let you in on as well. But it would be
nice to
get to the bottom of this.

- Mark

On 03/23/2010 03:36 PM, Michael Busch wrote:

   

Hi all,

I wanted to commit LUCENE-2329.  I just checked out the new combined
trunk https://svn.apache.org/repos/asf/lucene/dev/trunk and ran "ant
test".
  After 20 mins the build failed on the unmodified code (see below).  I
hadn't applied my patch yet.

What's the status of the combined trunk?  Should the tests pass?  As
far
as I can tell all lucene tests were successful (core, contrib, bw), but
the
Solr tests failed.  Is there more setup for the Solr part necessary
after
'svn checkout'?

  Michael

BUILD FAILED

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/build.xml:28:
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:393:
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:


/Users/m

Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Robert Muir
Yeah its a bit confusing... before, exceptions happening in other
threads were silently hidden.

Uwe fixed this in Lucene I think, and right now the verbosity is
cranked for Solr, too.
Yonik is hacking away at these tests to quiet the ones that are "truly
expected" exceptions...

At least I think I got this right...

On Tue, Mar 23, 2010 at 4:26 PM, Michael Busch  wrote:
> I see.  And all the other exceptions printed are expected?
>
>  Michael
>
> On 3/23/10 1:20 PM, Robert Muir wrote:
>>
>> Thanks Michael, this isn't a parallel test problem at all, its a
>> sporatic problem with solr's jetty tests (the same problem I mentioned
>> in the previous response).
>>
>> You might/will see this problem running the tests sequentially too.
>>
>> Test org.apache.solr.client.solrj.embedded.JettyWebappTest FAILED
>>
>> On Tue, Mar 23, 2010 at 4:15 PM, Michael Busch  wrote:
>>
>>>
>>> Sorry for the lack of details.  Thought I had just not done an obvious
>>> step.
>>> Attached is the output from the Solr part.
>>>
>>> Btw: This machine is a Solr virgin,  Solr never ran on it before.
>>>
>>>  Michael
>>>
>>> On 3/23/10 1:00 PM, Mark Miller wrote:
>>>

 Robert very recently committed some stuff that parallelizes the solr
 tests
 that may need to be worked out in all cases still (if that is indeed the
 problem here). A variety of devs have tested it, but there may be a
 lingering issue?

 No helpful errors printed above BUILD FAILED? The line the errors you
 pasted gives is simply the line that fails the build if tests failed.

 There is still a way to run them sequentially (as Hudson should be
 doing)
 that Robert should be able to let you in on as well. But it would be
 nice to
 get to the bottom of this.

 - Mark

 On 03/23/2010 03:36 PM, Michael Busch wrote:

>
> Hi all,
>
> I wanted to commit LUCENE-2329.  I just checked out the new combined
> trunk https://svn.apache.org/repos/asf/lucene/dev/trunk and ran "ant
> test".
>  After 20 mins the build failed on the unmodified code (see below).  I
> hadn't applied my patch yet.
>
> What's the status of the combined trunk?  Should the tests pass?  As
> far
> as I can tell all lucene tests were successful (core, contrib, bw), but
> the
> Solr tests failed.  Is there more setup for the Solr part necessary
> after
> 'svn checkout'?
>
>  Michael
>
> BUILD FAILED
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/build.xml:28:
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:393:
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
>
>
> /Users/michael/Documents/workspace/l

Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Michael Busch

I see.  And all the other exceptions printed are expected?

 Michael

On 3/23/10 1:20 PM, Robert Muir wrote:

Thanks Michael, this isn't a parallel test problem at all, its a
sporatic problem with solr's jetty tests (the same problem I mentioned
in the previous response).

You might/will see this problem running the tests sequentially too.

Test org.apache.solr.client.solrj.embedded.JettyWebappTest FAILED

On Tue, Mar 23, 2010 at 4:15 PM, Michael Busch  wrote:
   

Sorry for the lack of details.  Thought I had just not done an obvious step.
Attached is the output from the Solr part.

Btw: This machine is a Solr virgin,  Solr never ran on it before.

  Michael

On 3/23/10 1:00 PM, Mark Miller wrote:
 

Robert very recently committed some stuff that parallelizes the solr tests
that may need to be worked out in all cases still (if that is indeed the
problem here). A variety of devs have tested it, but there may be a
lingering issue?

No helpful errors printed above BUILD FAILED? The line the errors you
pasted gives is simply the line that fails the build if tests failed.

There is still a way to run them sequentially (as Hudson should be doing)
that Robert should be able to let you in on as well. But it would be nice to
get to the bottom of this.

- Mark

On 03/23/2010 03:36 PM, Michael Busch wrote:
   

Hi all,

I wanted to commit LUCENE-2329.  I just checked out the new combined
trunk https://svn.apache.org/repos/asf/lucene/dev/trunk and ran "ant test".
  After 20 mins the build failed on the unmodified code (see below).  I
hadn't applied my patch yet.

What's the status of the combined trunk?  Should the tests pass?  As far
as I can tell all lucene tests were successful (core, contrib, bw), but the
Solr tests failed.  Is there more setup for the Solr part necessary after
'svn checkout'?

  Michael

BUILD FAILED
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/build.xml:28:
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:393:
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!
The following error occurred while executing this line:

/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
Tests failed!

Total time: 19 minutes 38 seconds


---

Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Michael Busch

On 3/23/10 1:07 PM, Robert Muir wrote:

Maybe, the Solr test TestLBHttpSolrServer failed for me randomly
before this parallelization though, and still does.
In general the jetty tests have caused me some grief.

But its also equally likely i broke it for you somehow...

Michael, can you try running with -Dsequential-tests=1 ?

   


Sure - it's running now, will send the results when it's done.


Apologies if its something I caused.

   


Hey don't apologize!  You've done tons of work!

 Michael

-
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org



Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Robert Muir
Thanks Michael, this isn't a parallel test problem at all, its a
sporatic problem with solr's jetty tests (the same problem I mentioned
in the previous response).

You might/will see this problem running the tests sequentially too.

Test org.apache.solr.client.solrj.embedded.JettyWebappTest FAILED

On Tue, Mar 23, 2010 at 4:15 PM, Michael Busch  wrote:
> Sorry for the lack of details.  Thought I had just not done an obvious step.
> Attached is the output from the Solr part.
>
> Btw: This machine is a Solr virgin,  Solr never ran on it before.
>
>  Michael
>
> On 3/23/10 1:00 PM, Mark Miller wrote:
>>
>> Robert very recently committed some stuff that parallelizes the solr tests
>> that may need to be worked out in all cases still (if that is indeed the
>> problem here). A variety of devs have tested it, but there may be a
>> lingering issue?
>>
>> No helpful errors printed above BUILD FAILED? The line the errors you
>> pasted gives is simply the line that fails the build if tests failed.
>>
>> There is still a way to run them sequentially (as Hudson should be doing)
>> that Robert should be able to let you in on as well. But it would be nice to
>> get to the bottom of this.
>>
>> - Mark
>>
>> On 03/23/2010 03:36 PM, Michael Busch wrote:
>>>
>>> Hi all,
>>>
>>> I wanted to commit LUCENE-2329.  I just checked out the new combined
>>> trunk https://svn.apache.org/repos/asf/lucene/dev/trunk and ran "ant test".
>>>  After 20 mins the build failed on the unmodified code (see below).  I
>>> hadn't applied my patch yet.
>>>
>>> What's the status of the combined trunk?  Should the tests pass?  As far
>>> as I can tell all lucene tests were successful (core, contrib, bw), but the
>>> Solr tests failed.  Is there more setup for the Solr part necessary after
>>> 'svn checkout'?
>>>
>>>  Michael
>>>
>>> BUILD FAILED
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/build.xml:28:
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:393:
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>>> Tests failed!
>>> The following error occurred while executing this line:
>>>
>>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/buil

Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Robert Muir
Maybe, the Solr test TestLBHttpSolrServer failed for me randomly
before this parallelization though, and still does.
In general the jetty tests have caused me some grief.

But its also equally likely i broke it for you somehow...

Michael, can you try running with -Dsequential-tests=1 ?

Apologies if its something I caused.

On Tue, Mar 23, 2010 at 4:00 PM, Mark Miller  wrote:
> Robert very recently committed some stuff that parallelizes the solr tests
> that may need to be worked out in all cases still (if that is indeed the
> problem here). A variety of devs have tested it, but there may be a
> lingering issue?
>
> No helpful errors printed above BUILD FAILED? The line the errors you pasted
> gives is simply the line that fails the build if tests failed.
>
> There is still a way to run them sequentially (as Hudson should be doing)
> that Robert should be able to let you in on as well. But it would be nice to
> get to the bottom of this.
>
> - Mark
>
> On 03/23/2010 03:36 PM, Michael Busch wrote:
>>
>> Hi all,
>>
>> I wanted to commit LUCENE-2329.  I just checked out the new combined trunk
>> https://svn.apache.org/repos/asf/lucene/dev/trunk and ran "ant test".  After
>> 20 mins the build failed on the unmodified code (see below).  I hadn't
>> applied my patch yet.
>>
>> What's the status of the combined trunk?  Should the tests pass?  As far
>> as I can tell all lucene tests were successful (core, contrib, bw), but the
>> Solr tests failed.  Is there more setup for the Solr part necessary after
>> 'svn checkout'?
>>
>>  Michael
>>
>> BUILD FAILED
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/build.xml:28:
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:393:
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>> The following error occurred while executing this line:
>>
>> /Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472:
>> Tests failed!
>>
>> Total time: 19 minutes 38 seconds
>>
>>
>> -
>> To unsubscribe, e-mail:

Re: Running the Solr/Lucene tests failed

2010-03-23 Thread Mark Miller
Robert very recently committed some stuff that parallelizes the solr 
tests that may need to be worked out in all cases still (if that is 
indeed the problem here). A variety of devs have tested it, but there 
may be a lingering issue?


No helpful errors printed above BUILD FAILED? The line the errors you 
pasted gives is simply the line that fails the build if tests failed.


There is still a way to run them sequentially (as Hudson should be 
doing) that Robert should be able to let you in on as well. But it would 
be nice to get to the bottom of this.


- Mark

On 03/23/2010 03:36 PM, Michael Busch wrote:

Hi all,

I wanted to commit LUCENE-2329.  I just checked out the new combined 
trunk https://svn.apache.org/repos/asf/lucene/dev/trunk and ran "ant 
test".  After 20 mins the build failed on the unmodified code (see 
below).  I hadn't applied my patch yet.


What's the status of the combined trunk?  Should the tests pass?  As 
far as I can tell all lucene tests were successful (core, contrib, 
bw), but the Solr tests failed.  Is there more setup for the Solr part 
necessary after 'svn checkout'?


 Michael

BUILD FAILED
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/build.xml:28: 
The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:393: 


The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!


Total time: 19 minutes 38 seconds


-
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org




--
- Mark

http://www.lucidimagination.com




-
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org



RE: Running the Solr/Lucene tests failed

2010-03-23 Thread Uwe Schindler
The last hudson run worked two hours ago...

-
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de


> -Original Message-
> From: Michael Busch [mailto:busch...@gmail.com]
> Sent: Tuesday, March 23, 2010 8:37 PM
> To: java-dev@lucene.apache.org; solr-...@lucene.apache.org
> Subject: Running the Solr/Lucene tests failed
> 
> Hi all,
> 
> I wanted to commit LUCENE-2329.  I just checked out the new combined
> trunk https://svn.apache.org/repos/asf/lucene/dev/trunk and ran "ant
> test".  After 20 mins the build failed on the unmodified code (see
> below).  I hadn't applied my patch yet.
> 
> What's the status of the combined trunk?  Should the tests pass?  As
> far
> as I can tell all lucene tests were successful (core, contrib, bw), but
> the Solr tests failed.  Is there more setup for the Solr part necessary
> after 'svn checkout'?
> 
>   Michael
> 
> BUILD FAILED
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/build.xml:28:
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:393:
> 
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> The following error occurred while executing this line:
> /Users/michael/Documents/workspace/lucene-solr-
> trunk/trunk/solr/build.xml:472:
> Tests failed!
> 
> Total time: 19 minutes 38 seconds
> 
> 
> -
> To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-dev-h...@lucene.apache.org



-
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org



Running the Solr/Lucene tests failed

2010-03-23 Thread Michael Busch

Hi all,

I wanted to commit LUCENE-2329.  I just checked out the new combined 
trunk https://svn.apache.org/repos/asf/lucene/dev/trunk and ran "ant 
test".  After 20 mins the build failed on the unmodified code (see 
below).  I hadn't applied my patch yet.


What's the status of the combined trunk?  Should the tests pass?  As far 
as I can tell all lucene tests were successful (core, contrib, bw), but 
the Solr tests failed.  Is there more setup for the Solr part necessary 
after 'svn checkout'?


 Michael

BUILD FAILED
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/build.xml:28: 
The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:393: 


The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!

The following error occurred while executing this line:
/Users/michael/Documents/workspace/lucene-solr-trunk/trunk/solr/build.xml:472: 
Tests failed!


Total time: 19 minutes 38 seconds


-
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org