s/BenchmarkRunnerExecutor.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 27 Jul 2013 13:26:01 +0100
changeset 140 425f8c6946f4
parent 139 eaf40f3173ad
child 141 4fbcea2829d2
permissions -rw-r--r--
Introduced BenchmarkParameter class. Added parameter combination... ...which allows to run benchmark with multiple parameter velues in a single run. Specify -Dparam=value1,value2,value3.
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
140
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    52
!BenchmarkRunnerExecutor methodsFor:'executing-private'!
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    53
140
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    54
execute: aBenchmarkInstance result: aBenchmarkResult parameters: 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
140
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    62
    super execute: aBenchmarkInstance result: aBenchmarkResult parameters: 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
140
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    69
    "Created: / 27-07-2013 / 12:33:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    70
!
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    71
140
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    72
setUp:aBenchmarkInstance parameters: aCollection
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    73
    transcript nextPutAll:'S..'.   
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    74
    aCollection do:[:each|
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    75
        aBenchmarkInstance setUpParameter: each key value: each value
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    76
    ].
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    77
    aBenchmarkInstance setUp.
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    78
140
425f8c6946f4 Introduced BenchmarkParameter class. Added parameter combination...
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 139
diff changeset
    79
    "Created: / 27-07-2013 / 12:33:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
99
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
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    82
tearDown: aBenchmarkInstance
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    83
    transcript nextPutAll: 'T..'.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    84
    super tearDown: aBenchmarkInstance
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    85
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    86
    "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
    87
!
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    88
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    89
timeIt: aBenchmarkInstance
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    90
    transcript nextPutAll: 'B..'.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    91
    ^super timeIt: aBenchmarkInstance.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    92
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    93
    "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
    94
!
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    95
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    96
warmUp: aBenchmarkInstance
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    97
    transcript nextPutAll: 'W..'.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    98
    super warmUp: aBenchmarkInstance.
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   100
    "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
   101
! !
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   102
139
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   103
!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
   104
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   105
initialize
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   106
    "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
   107
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   108
    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
   109
    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
   110
    (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
   111
        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
   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
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   114
    "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
   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
eaf40f3173ad Introduced BenchmarkExecutor - a class responsible for execution of a single benchmark.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 99
diff changeset
   117
!BenchmarkRunnerExecutor class methodsFor:'documentation'!
99
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   118
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   119
version_HG
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   120
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   121
    ^ '$Changeset: <not expanded> $'
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   122
! !
c7755eb4166c Added lost class BenchmarkRunnerResult.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   123