bq:  Last minute commit before leaving - red card.

Worked with a guy once who put a copy-on-write algorithm in the very
base layer upon
which all other layers depended in C++ code on Friday late. And left
for a 2-week holiday
the next day.

This is no foul in comparison <G>....

On Wed, Sep 19, 2012 at 10:20 AM, Dawid Weiss (JIRA) <j...@apache.org> wrote:
>
>     [ 
> https://issues.apache.org/jira/browse/LUCENE-4406?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13458714#comment-13458714
>  ]
>
> Dawid Weiss commented on LUCENE-4406:
> -------------------------------------
>
> Thanks guys, my bad -- I actually ran ant precommit but I work on a git 
> checkout and it failed on me (svn required). Last minute commit before 
> leaving - red card.
>
>> Print out where tests failed at the end of running the Test Suite
>> -----------------------------------------------------------------
>>
>>                 Key: LUCENE-4406
>>                 URL: https://issues.apache.org/jira/browse/LUCENE-4406
>>             Project: Lucene - Core
>>          Issue Type: Bug
>>          Components: general/test
>>            Reporter: Grant Ingersoll
>>            Assignee: Dawid Weiss
>>            Priority: Minor
>>             Fix For: 5.0, 4.0
>>
>>
>> It would be nice if, at the end of running ant test, it spit out the names 
>> of which tests failed so that one doesn't have to go scrolling up through 
>> the output or go run grep on the test-reports as a separate step.
>> For another project, I use:
>> {code}
>> <target name="test-summary">
>>     <echo>Looking for summaries in: ${build.dir}/test-reports with basedir: 
>> ${basedir}</echo>
>>     <echo>Errors:</echo>
>>     <exec executable="grep">
>>             <arg value="-r"/>
>>             <arg value="-rl"/>
>>             <arg value="errors=\&quot;[1-9]\&quot;"/>
>>             <arg value="${build.dir}/test-reports"/>
>>     </exec>
>>     <echo>Failures:</echo>
>>     <exec executable="grep">
>>             <arg value="-r"/>
>>             <arg value="-rl"/>
>>             <arg value="failures=\&quot;[1-9]\&quot;"/>
>>             <arg value="${build.dir}/test-reports"/>
>>     </exec>
>>   </target>
>> {code}
>> which can likely be modified for Lucene.  I can do it, but wanted to see if 
>> others had an opinion.
>
> --
> This message is automatically generated by JIRA.
> If you think it was sent incorrectly, please contact your JIRA administrators
> For more information on JIRA, see: http://www.atlassian.com/software/jira
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
> For additional commands, e-mail: dev-h...@lucene.apache.org
>

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

Reply via email to