<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">It's a trivial fix. They should be able
      to include it into surefire 2.13-SNAPSHOT very soon.<br>
      <br>
      On 06/27/2012 05:51 PM, Manik Surtani wrote:<br>
    </div>
    <blockquote
      cite="mid:95698C9B-D887-45B3-A178-5F39A2AD9F91@jboss.org"
      type="cite">Awesome, thanks Adrian.
      <div><br>
      </div>
      <div>It may make sense to speak to some of the Maven folks to get
        this accepted and in a release form asap so we can use it. &nbsp;</div>
      <div><br>
      </div>
      <div><br>
        <div>
          <div>On 27 Jun 2012, at 12:51, Adrian Nistor wrote:</div>
          <br class="Apple-interchange-newline">
          <blockquote type="cite">
            <div>I've just submitted the surefire
              ConcurrentModificationException issue <br>
              (<a moz-do-not-send="true"
                href="http://jira.codehaus.org/browse/SUREFIRE-879">http://jira.codehaus.org/browse/SUREFIRE-879</a>)
              and also created a pull <br>
              request for the (trivial) fix. Let's hope they will be
              quick to handle <br>
              it. This has the potential of eliminating many of our
              random test failures.<br>
              <br>
              On 06/26/2012 11:59 PM, Adrian Nistor wrote:<br>
              <blockquote type="cite">The entire System.out and
                System.err is redirected. I don't want to<br>
              </blockquote>
              <blockquote type="cite">think what this means in the
                context of concurrent test execution...<br>
              </blockquote>
              <blockquote type="cite"><br>
              </blockquote>
              <blockquote type="cite">On 06/26/2012 11:32 PM, Sanne
                Grinovero wrote:<br>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">Thanks Adrian,<br>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">Is the log4j console appender
                  being redirected by surefire?<br>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite"><br>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">On 26 June 2012 21:21, Adrian
                  Nistor &lt;<a moz-do-not-send="true"
                    href="mailto:anistor@redhat.com">anistor@redhat.com</a>&gt;
                  wrote:<br>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">Hi Sanne,<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite"><br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">I know the explanation was a
                    bit laconic so I'll try to expand it a bit.<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">surefire has a buffer (a List
                    actually) were console output is<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">accumulated during each test.<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">The list is synchronized so
                    multiple threads writing to console is not<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">causing List corruption.<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">There is a very sensitive
                    moment though at the end of the test when this<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">List of text lines is
                    consolidated into a StringBuffer that is added to<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">the test report. Unfortunately
                    during consolidation the List is accessed<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">without proper synchronization
                    and if some stray thread outlives the<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">test and continues to generate
                    output or we run multiple tests<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">concurrently - this will most
                    likely cause a<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">ConcurrentModificationException.
                    &nbsp;Of course this problem is avoided if<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">you disable logging to console
                    :). Actually not entirely avoided, but<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">minimized, because some tests
                    also write to console directly using<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">System.out.println() and that
                    can still trigger the issue.<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite"><br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">Adrian<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite"><br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">On 06/26/2012 07:33 PM, Sanne
                    Grinovero wrote:<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">
                    <blockquote type="cite">On 26 June 2012 16:55,
                      Adrian Nistor &lt;<a moz-do-not-send="true"
                        href="mailto:anistor@redhat.com">anistor@redhat.com</a>&gt;
                      wrote:<br>
                    </blockquote>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">
                    <blockquote type="cite">
                      <blockquote type="cite">It doesn't know or care
                        about it. But by disabling log4j console
                        appender<br>
                      </blockquote>
                    </blockquote>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">
                    <blockquote type="cite">
                      <blockquote type="cite">you minimize the amount of
                        text written to console and the risk to trigger<br>
                      </blockquote>
                    </blockquote>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">
                    <blockquote type="cite">
                      <blockquote type="cite">the surefire-report bug.<br>
                      </blockquote>
                    </blockquote>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">
                    <blockquote type="cite">because it returns quicker?<br>
                    </blockquote>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">_______________________________________________<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite">infinispan-dev mailing list<br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite"><a moz-do-not-send="true"
                      href="mailto:infinispan-dev@lists.jboss.org">infinispan-dev@lists.jboss.org</a><br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">
                  <blockquote type="cite"><a moz-do-not-send="true"
                      href="https://lists.jboss.org/mailman/listinfo/infinispan-dev">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a><br>
                  </blockquote>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">_______________________________________________<br>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite">infinispan-dev mailing list<br>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite"><a moz-do-not-send="true"
                    href="mailto:infinispan-dev@lists.jboss.org">infinispan-dev@lists.jboss.org</a><br>
                </blockquote>
              </blockquote>
              <blockquote type="cite">
                <blockquote type="cite"><a moz-do-not-send="true"
                    href="https://lists.jboss.org/mailman/listinfo/infinispan-dev">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a><br>
                </blockquote>
              </blockquote>
              <blockquote type="cite"><br>
              </blockquote>
              <blockquote type="cite">_______________________________________________<br>
              </blockquote>
              <blockquote type="cite">infinispan-dev mailing list<br>
              </blockquote>
              <blockquote type="cite"><a moz-do-not-send="true"
                  href="mailto:infinispan-dev@lists.jboss.org">infinispan-dev@lists.jboss.org</a><br>
              </blockquote>
              <blockquote type="cite"><a moz-do-not-send="true"
                  href="https://lists.jboss.org/mailman/listinfo/infinispan-dev">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a><br>
              </blockquote>
              <br>
              <br>
              _______________________________________________<br>
              infinispan-dev mailing list<br>
              <a moz-do-not-send="true"
                href="mailto:infinispan-dev@lists.jboss.org">infinispan-dev@lists.jboss.org</a><br>
              <a moz-do-not-send="true"
                href="https://lists.jboss.org/mailman/listinfo/infinispan-dev">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a><br>
            </div>
          </blockquote>
        </div>
        <br>
        <div apple-content-edited="true">
          <span class="Apple-style-span" style="border-collapse:
            separate; color: rgb(0, 0, 0); font-family: Helvetica;
            font-style: normal; font-variant: normal; font-weight:
            normal; letter-spacing: normal; line-height: normal;
            orphans: 2; text-align: -webkit-auto; text-indent: 0px;
            text-transform: none; white-space: normal; widows: 2;
            word-spacing: 0px; -webkit-border-horizontal-spacing: 0px;
            -webkit-border-vertical-spacing: 0px;
            -webkit-text-decorations-in-effect: none;
            -webkit-text-size-adjust: auto; -webkit-text-stroke-width:
            0px; font-size: medium; "><span class="Apple-style-span"
              style="border-collapse: separate; color: rgb(0, 0, 0);
              font-family: Helvetica; font-style: normal; font-variant:
              normal; font-weight: normal; letter-spacing: normal;
              line-height: normal; orphans: 2; text-indent: 0px;
              text-transform: none; white-space: normal; widows: 2;
              word-spacing: 0px; -webkit-border-horizontal-spacing: 0px;
              -webkit-border-vertical-spacing: 0px;
              -webkit-text-decorations-in-effect: none;
              -webkit-text-size-adjust: auto; -webkit-text-stroke-width:
              0px; font-size: medium; ">
              <div style="word-wrap: break-word; -webkit-nbsp-mode:
                space; -webkit-line-break: after-white-space; ">
                <div>
                  <div>
                    <div>--</div>
                    <div>Manik Surtani</div>
                    <div><a moz-do-not-send="true"
                        href="mailto:manik@jboss.org">manik@jboss.org</a></div>
                    <div><a moz-do-not-send="true"
                        href="http://twitter.com/maniksurtani">twitter.com/maniksurtani</a></div>
                    <div><br>
                    </div>
                    <div>Project Lead, Infinispan</div>
                    <div><a moz-do-not-send="true"
                        href="http://www.infinispan.org">http://www.infinispan.org</a></div>
                    <div><br>
                    </div>
                    <div>Platform Architect, JBoss Data Grid</div>
                    <div><a moz-do-not-send="true"
                        href="http://www.redhat.com/promo/dg6beta">http://www.redhat.com/promo/dg6beta</a></div>
                  </div>
                </div>
              </div>
            </span></span>
        </div>
        <br>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
infinispan-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:infinispan-dev@lists.jboss.org">infinispan-dev@lists.jboss.org</a>
<a class="moz-txt-link-freetext" href="https://lists.jboss.org/mailman/listinfo/infinispan-dev">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a></pre>
    </blockquote>
    <br>
    <br>
  </body>
</html>