Pass ident string to coverage report when tests are run with `-c` option jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Sat, 28 May 2016 10:40:05 +0100
branchjv
changeset 318 b7f0437a6d18
parent 317 a4b0b75a7a51
child 322 9ec2abb1218e
Pass ident string to coverage report when tests are run with `-c` option i.e., when tests are run like report-runner -D . -i build10 -r Builder::TestReport -p stx:libjava following files will be created: stx_libjava-build10-Test.xml stx_libjava-build10-Coverage.xml
reports/Builder__TestReport.st
--- a/reports/Builder__TestReport.st	Fri Apr 01 06:37:55 2016 +0200
+++ b/reports/Builder__TestReport.st	Sat May 28 10:40:05 2016 +0100
@@ -248,6 +248,7 @@
         Transcript cr; cr.
         Transcript show: 'COLLECTING COVERAGE...'.
         coverage name: self name.
+        coverage ident: self ident.
         coverage run.
     ] ifFalse:[
         suite run:result.
@@ -270,7 +271,7 @@
     Transcript cr.
 
     "Created: / 04-08-2011 / 12:39:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 23-10-2013 / 11:48:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 28-05-2016 / 10:33:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !TestReport::Result methodsFor:'accessing'!
@@ -627,6 +628,11 @@
     ^ '$Header$'
 !
 
+version_HG
+
+    ^ '$Changeset: <not expanded> $'
+!
+
 version_SVN
     ^ '$Id$'
 ! !