s/BenchmarkRunnerExecutor.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 26 Jul 2013 00:32:44 +0100
changeset 139 eaf40f3173ad
parent 99 s/BenchmarkRunnerResult.st@c7755eb4166c
child 140 425f8c6946f4
permissions -rw-r--r--
Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     1
"{ Package: 'jv:calipel/s' }"
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     2
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
     3
BenchmarkExecutor subclass:#BenchmarkRunnerExecutor
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
	instanceVariableNames:'transcript'
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
	classVariableNames:''
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
	poolDictionaries:''
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
	category:'CalipeL-S-Core-Runner'
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     8
!
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     9
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    10
!BenchmarkRunnerExecutor class methodsFor:'documentation'!
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
documentation
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    13
" 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    15
  Replace 'Object', 'NewClass1' and
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
  the empty string arguments by true values.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    17
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    18
  Install (or change) the class by 'accepting',
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
  either via the menu or the keyboard (usually CMD-A).
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    21
  You can also change the category simply by editing
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    22
  the categoryString and accepting.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    23
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    24
  To be nice to others (and yourself later), do not forget to
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    25
  add some documentation; preferably under the classes documentation
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    26
  protocol.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    27
  (see the `create documentation stubs' item in the methodList menu;
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    28
   switch from instance to class to find this menu item.)
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    29
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    30
  Notice, that ST/X uses the convention to document the class using
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    31
  comment-only class methods (however, ST80 comments are supported and
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    32
  can be changed via the class-documentation menu).
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    33
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    34
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    35
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    36
  Notice: 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    37
    the above text has been extracted from the classes documentation method.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    38
    Any change in it will be lost if you 'accept' here.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    39
    To change the documentation, switch to the documentation method and 'accept' any changes there.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    40
 
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    41
"
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    42
! !
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    43
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    44
!BenchmarkRunnerExecutor class methodsFor:'instance creation'!
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    45
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    46
new
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    47
    "return an initialized instance"
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    48
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    49
    ^ self basicNew initialize.
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    50
! !
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    51
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    52
!BenchmarkRunnerExecutor methodsFor:'executing'!
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    53
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    54
execute: aBenchmarkInstance result: aBenchmarkResult defines: aDictionary
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    55
    | nm |
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    56
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    57
    nm := aBenchmarkInstance name.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    58
    transcript next: (25 - nm size) put: Character space.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    59
    transcript nextPutAll: nm.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    60
    transcript nextPutAll: '...'.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    61
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    62
    super execute: aBenchmarkInstance result: aBenchmarkResult defines: aDictionary.
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    63
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    64
    transcript nextPutAll: 'OK ['.
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    65
    transcript nextPutAll: (aBenchmarkResult outcomes detect:[:o|o benchmark == aBenchmarkInstance ]) time printString.
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    66
    transcript nextPutAll: ']
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    67
'
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    68
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    69
    "Created: / 26-07-2013 / 00:12:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    70
! !
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    71
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
    72
!BenchmarkRunnerExecutor methodsFor:'executing-private'!
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    73
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    74
setUp: aBenchmarkInstance parameters: aDictionary
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    75
    transcript nextPutAll: 'S..'.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    76
    super setUp: aBenchmarkInstance parameters: aDictionary
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    77
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    78
    "Created: / 24-06-2013 / 01:20:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    79
!
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    80
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    81
tearDown: aBenchmarkInstance
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    82
    transcript nextPutAll: 'T..'.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    83
    super tearDown: aBenchmarkInstance
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    84
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    85
    "Created: / 24-06-2013 / 01:21:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    86
!
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    87
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    88
timeIt: aBenchmarkInstance
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    89
    transcript nextPutAll: 'B..'.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    90
    ^super timeIt: aBenchmarkInstance.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    91
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    92
    "Created: / 24-06-2013 / 01:22:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    93
!
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    94
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    95
warmUp: aBenchmarkInstance
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    96
    transcript nextPutAll: 'W..'.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    97
    super warmUp: aBenchmarkInstance.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    98
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    99
    "Created: / 24-06-2013 / 01:21:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   100
! !
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   101
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   102
!BenchmarkRunnerExecutor methodsFor:'initialization'!
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   103
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   104
initialize
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   105
    "Invoked when a new instance is created."
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   106
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   107
    super initialize.
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   108
    transcript := BenchmarkPlatform current stderr.
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   109
    (Smalltalk isSmalltalkX and:[Transcript isView]) ifTrue:[
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   110
        transcript := Transcript
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   111
    ].
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   112
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   113
    "Created: / 24-06-2013 / 01:16:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   114
! !
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   115
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   116
!BenchmarkRunnerExecutor class methodsFor:'documentation'!
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   117
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   118
version_HG
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   119
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   120
    ^ '$Changeset: <not expanded> $'
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   121
! !
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   122