1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/tests/repl/run.v
2019-11-28 11:46:52 +03:00

26 lines
556 B
V

module main
import compiler.tests.repl.runner
import log
import benchmark
fn main(){
mut logger := log.Log{}
logger.set_level(log.DEBUG)
options := runner.new_options()
mut bmark := benchmark.new_benchmark()
for file in options.files {
bmark.step()
fres := runner.run_repl_file(options.wd, options.vexec, file) or {
bmark.fail()
logger.error( bmark.step_message( err ) )
continue
}
bmark.ok()
logger.info( bmark.step_message( fres ) )
}
bmark.stop()
logger.info( bmark.total_message('total time spent running REPL files') )
}