No, it's a regression -- this option should be set automatically as a
result of other settings. The fewer, the better. It currently _is_ set
automatically, actually, if you filter for a class or method, see
common-build.xml:

  <condition property="tests.showOutput" value="always">
    <or>
      <isset property="tests.class" />
      <isset property="tests.method" />
    </or>
  </condition>
  <property name="tests.showOutput" value="onerror"/>

all that needs to be done is to add a condition that would enable it
in the case tests.showSuccess is set to a boolean indicating 'true'.
ANT condition for this would be probably:

<istrue value="${tests.showSuccess}"/>

If you can add it, it'd be great.

D.

On Fri, Aug 24, 2012 at 4:44 PM, Michael McCandless
<[email protected]> wrote:
> On Fri, Aug 24, 2012 at 10:32 AM, Dawid Weiss
> <[email protected]> wrote:
>> Just for clarity -- I meant both:
>>
>> -Dtests.showOutput=always -Dtests.showSuccess=true
>>
>> Also, if you want to see the output asap, without buffering, you'll
>> have to run with one JVM.
>>
>> -Dtests.jvms=1
>
> Aha!  Thanks Dawid :)
>
> Should we add -Dtests.showOutput=XXX to the test-help?
>
> Mike McCandless
>
> http://blog.mikemccandless.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to