s/BenchmarkRunner.st
changeset 98 4266d340e722
parent 76 97cf7bf849e6
child 122 9ad7296fc59a
--- a/s/BenchmarkRunner.st	Mon Jun 24 00:56:32 2013 +0100
+++ b/s/BenchmarkRunner.st	Mon Jun 24 01:37:29 2013 +0100
@@ -4,7 +4,7 @@
 	instanceVariableNames:'debugging'
 	classVariableNames:''
 	poolDictionaries:''
-	category:'CalipeL-S-Core'
+	category:'CalipeL-S-Core-Runner'
 !
 
 !BenchmarkRunner class methodsFor:'documentation'!
@@ -158,7 +158,7 @@
     ].
 
     "Run suite"
-    result := BenchmarkResult new.
+    result := BenchmarkRunnerResult new.
     result runs: runs.
     suite run: result with: params.
 
@@ -173,7 +173,7 @@
 
     self exit: 0.
 
-    "Modified: / 12-06-2013 / 14:25:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 24-06-2013 / 01:14:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 options