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-12-30 05:23:54 +01:00

25 lines
554 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_fail(err))
continue
}
bmark.ok()
logger.info(bmark.step_message_ok(fres))
}
bmark.stop()
logger.info(bmark.total_message('total time spent running REPL files'))
}