Re: how to report on multiple iterations of the same test

2012-03-29 Thread Ullrich Hafner
Can't you change the name of the test case dynamically? E.g., using a
TestRunner?

Ulli

On 03/28/2012 10:54 PM, bl0ck3r wrote:
 I need to report on multiple iterations of the same test when it is
 run with different seeds. With the following report, jenkins does not
 see multiple iterations... how do I get it to report all the
 iterations?

 ?xml version=1.0 encoding=UTF-8?
 testsuite errors=0 failures=0 hostname=bar name=foo.When
 tests=3 time=0.0060 timestamp=2010-12-04T19:14:28
   properties /
   testcase classname=foo.When name=test1 seed=1 time=0.0020 /
   testcase classname=foo.When name=test1 seed=2 time=0.0020 /
   testcase classname=foo.When name=test2 seed=1 time=0.0020 /
 /testsuite


 Thanks.



Re: how to report on multiple iterations of the same test

2012-03-29 Thread bl0ck3r
I was hoping to have an additional column for the seed value. I do not
know what a TestRunner is, and unless it works with SystemVerilog, I
can't use it.

On Mar 29, 3:27 am, Ullrich Hafner ullrich.haf...@gmail.com wrote:
 Can't you change the name of the test case dynamically? E.g., using a
 TestRunner?

 Ulli



how to report on multiple iterations of the same test

2012-03-28 Thread bl0ck3r
I need to report on multiple iterations of the same test when it is
run with different seeds. With the following report, jenkins does not
see multiple iterations... how do I get it to report all the
iterations?

?xml version=1.0 encoding=UTF-8?
testsuite errors=0 failures=0 hostname=bar name=foo.When
tests=3 time=0.0060 timestamp=2010-12-04T19:14:28
  properties /
  testcase classname=foo.When name=test1 seed=1 time=0.0020 /

  testcase classname=foo.When name=test1 seed=2 time=0.0020 /

  testcase classname=foo.When name=test2 seed=1 time=0.0020 /

/testsuite


Thanks.