v/vlib/compiler/tests/repl/run.v

25 lines
554 B
V
Raw Normal View History

module main
import compiler.tests.repl.runner
import log
import benchmark
2019-12-30 05:23:54 +01:00
fn main() {
2019-11-28 09:46:52 +01:00
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()
2019-12-30 05:23:54 +01:00
logger.error(bmark.step_message_fail(err))
continue
}
bmark.ok()
2019-12-30 05:23:54 +01:00
logger.info(bmark.step_message_ok(fres))
}
bmark.stop()
2019-12-30 05:23:54 +01:00
logger.info(bmark.total_message('total time spent running REPL files'))
}