compiler/tests/extras/PPCLRPCompiledParserSmokeTest.st
changeset 529 439c4057517f
parent 521 c1a810e250dc
child 535 a8feb0f47574
equal deleted inserted replaced
528:ebfddc82b8bb 529:439c4057517f
    83 setUpBefore
    83 setUpBefore
    84     "Called before any of my tests is run (when resources are set up)"
    84     "Called before any of my tests is run (when resources are set up)"
    85     | time configuration |
    85     | time configuration |
    86 
    86 
    87     configuration := self compilerConfiguration.
    87     configuration := self compilerConfiguration.
    88     configuration arguments parserName: self compiledParserClassName.
    88     configuration options parserName: self compiledParserClassName.
    89     time := Time millisecondsToRun: [
    89     time := Time millisecondsToRun: [
    90         self petitParser compileWithConfiguration: configuration.
    90         self petitParser compileWithConfiguration: configuration.
    91     ].
    91     ].
    92     Transcript show: self petitParserClass name ; show:' compiled in: '; show: time asString; show: 'ms'; cr.
    92     Transcript show: self petitParserClass name ; show:' compiled in: '; show: time asString; show: 'ms'; cr.
    93 
    93