s/BenchmarkReportJSON.st
changeset 180 df8e7dcbfd8d
parent 142 c69d1eb92d91
child 190 ab1b88f52b93
--- a/s/BenchmarkReportJSON.st	Mon Aug 12 17:57:23 2013 +0100
+++ b/s/BenchmarkReportJSON.st	Mon Aug 12 18:26:45 2013 +0100
@@ -21,6 +21,8 @@
 
 write
     json writeDictionaryWith:[ 
+        json writeKey: 'name' value: self name.
+        json writeElementSeparator.
         json writeKey: 'timestamp' value: result timestamp printISO8601.
         json writeElementSeparator.
         json writeKey: 'configuration' valueWith: [ self writeConfiguration ].
@@ -29,7 +31,7 @@
     ].
 
     "Created: / 12-06-2013 / 14:03:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 23-06-2013 / 00:54:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 12-08-2013 / 18:24:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 writeBenchmark: benchmark
@@ -55,11 +57,11 @@
         json writeElementSeparator.
         json writeKey: 'os'         value: BenchmarkPlatform current configurationStringOS.
         json writeElementSeparator.
-        json writeKey: 'mechineid'   value: self machineId.
+        json writeKey: 'mechineid'   value: (BenchmarkPlatform current configurationStringMachineId)
     ].
 
     "Created: / 22-06-2013 / 22:43:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 13-07-2013 / 22:47:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 12-08-2013 / 18:18:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 writeFooter