v/cmd/tools/vtest-compiler.v

74 lines
2.1 KiB
V
Raw Normal View History

2019-12-01 10:50:13 +01:00
module main
import (
os
testing
benchmark
2020-02-20 11:33:01 +01:00
v.pref
2019-12-06 00:11:39 +01:00
)
2019-12-01 10:50:13 +01:00
pub const (
v_modules_path = os.home_dir() + '.vmodules'
)
fn main() {
args := os.args
args_string := args[1..].join(' ')
v_test_compiler(args_string.all_before('test-compiler'))
}
fn v_test_compiler(vargs string) {
2020-02-20 11:33:01 +01:00
vexe := pref.vexe_path()
2020-03-07 22:26:26 +01:00
parent_dir := os.dir(vexe)
testing.vlib_should_be_present(parent_dir)
2019-12-01 10:50:13 +01:00
// Changing the current directory is needed for some of the compiler tests,
// compiler/tests/local_test.v and compiler/tests/repl/repl_test.v
os.chdir(parent_dir)
2019-12-01 10:50:13 +01:00
/*
if !os.exists(parent_dir + '/v.v') {
2019-12-01 14:12:51 +01:00
eprintln('v.v is missing, it must be next to the V executable')
2019-12-01 10:50:13 +01:00
exit(1)
}
*/
2019-12-06 00:11:39 +01:00
2019-12-01 10:50:13 +01:00
// Make sure v.c can be compiled without warnings
$if macos {
2020-02-09 10:08:04 +01:00
if os.exists('/cmd/v') {
os.system('$vexe -o v.c cmd/v')
2019-12-01 10:50:13 +01:00
if os.system('cc -Werror v.c') != 0 {
2019-12-01 14:12:51 +01:00
eprintln('cc failed to build v.c without warnings')
2019-12-01 10:50:13 +01:00
exit(1)
}
2019-12-01 14:12:51 +01:00
eprintln('v.c can be compiled without warnings. This is good :)')
2019-12-01 10:50:13 +01:00
}
}
2020-02-09 10:08:04 +01:00
building_tools_failed := testing.v_build_failing(vargs, 'cmd/tools')
2020-02-08 17:01:10 +01:00
eprintln('')
testing.eheader('Testing all _test.v files...')
mut compiler_test_session := testing.new_test_session(vargs)
2019-12-01 10:50:13 +01:00
compiler_test_session.files << os.walk_ext(parent_dir, '_test.v')
compiler_test_session.test()
eprintln(compiler_test_session.benchmark.total_message('running V tests'))
2019-12-01 14:12:51 +01:00
eprintln('')
2019-12-01 10:50:13 +01:00
building_examples_failed := testing.v_build_failing(vargs, 'examples')
eprintln('')
2020-03-09 02:23:34 +01:00
building_live_failed := testing.v_build_failing(vargs + '-live', os.join_path('examples', 'hot_reload'))
2019-12-01 14:12:51 +01:00
eprintln('')
2019-12-01 10:50:13 +01:00
v_module_install_cmd := '$vexe install nedpals.args'
2020-02-08 17:01:10 +01:00
eprintln('')
testing.eheader('Installing a v module with: $v_module_install_cmd')
2019-12-01 10:50:13 +01:00
mut vmark := benchmark.new_benchmark()
ret := os.system(v_module_install_cmd)
if ret != 0 {
2019-12-01 14:12:51 +01:00
eprintln('failed to run v install')
2019-12-01 10:50:13 +01:00
}
if !os.exists(v_modules_path + '/nedpals/args') {
2019-12-01 14:12:51 +01:00
eprintln('v failed to install a test module')
2019-12-01 10:50:13 +01:00
}
vmark.stop()
eprintln('Installing a v module took: ' + vmark.total_duration().str() + 'ms')
if building_tools_failed || compiler_test_session.failed || building_examples_failed || building_live_failed {
2019-12-01 10:50:13 +01:00
exit(1)
}
}