1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/prod_test.v
2020-04-12 01:41:26 +02:00

31 lines
765 B
V

// Build and run files in ./prod/ folder, comparing their output to *.expected.txt files.
// (Similar to REPL tests, but in -prod mode.)
// import os
import (
v.tests.repl.runner
benchmark
)
fn test_all_v_prod_files() {
// TODO: Fix running this test on Windows:
$if !windows {
options := runner.new_prod_options()
mut bmark := benchmark.new_benchmark()
for file in options.files {
// println('file:$file')
bmark.step()
fres := runner.run_prod_file(options.wd, options.vexec, file) or {
bmark.fail()
eprintln(bmark.step_message_fail(err))
assert false
continue
}
bmark.ok()
println(bmark.step_message_ok(fres))
assert true
}
bmark.stop()
println(bmark.total_message('total time spent running PROD files'))
}
}