2019-12-01 10:50:13 +01:00
|
|
|
module main
|
|
|
|
|
2020-04-26 08:32:05 +02:00
|
|
|
import os
|
|
|
|
import testing
|
|
|
|
import benchmark
|
|
|
|
import v.pref
|
2019-12-01 10:50:13 +01:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
args := os.args
|
|
|
|
args_string := args[1..].join(' ')
|
|
|
|
v_test_compiler(args_string.all_before('test-compiler'))
|
|
|
|
}
|
|
|
|
|
2019-12-25 13:54:48 +01:00
|
|
|
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)
|
2019-12-25 13:54:48 +01:00
|
|
|
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,
|
2020-05-22 09:11:12 +02:00
|
|
|
// vlib/v/tests/local_test.v and vlib/v/tests/repl/repl_test.v
|
2019-12-25 13:54:48 +01:00
|
|
|
os.chdir(parent_dir)
|
2019-12-01 10:50:13 +01:00
|
|
|
/*
|
2019-12-04 21:03:12 +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)
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
// Make sure v.c can be compiled without warnings
|
2019-12-05 12:22:54 +01:00
|
|
|
$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...')
|
2019-12-25 13:54:48 +01:00
|
|
|
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()
|
2019-12-25 13:54:48 +01:00
|
|
|
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')
|
2019-12-05 12:22:54 +01:00
|
|
|
eprintln('')
|
2020-10-14 17:20:19 +02: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('')
|
2020-10-14 17:20:19 +02:00
|
|
|
//
|
|
|
|
testing.setup_new_vtmp_folder()
|
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
|
|
|
}
|
2020-10-14 17:20:19 +02:00
|
|
|
desired_path := os.join_path(pref.default_module_path, 'nedpals', 'args')
|
|
|
|
if !(os.exists(desired_path) && os.is_dir(desired_path)) {
|
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()
|
2019-12-25 13:54:48 +01:00
|
|
|
eprintln('Installing a v module took: ' + vmark.total_duration().str() + 'ms')
|
2020-10-14 17:20:19 +02:00
|
|
|
//
|
2019-12-25 13:54:48 +01:00
|
|
|
if building_tools_failed || compiler_test_session.failed || building_examples_failed || building_live_failed {
|
2019-12-01 10:50:13 +01:00
|
|
|
exit(1)
|
|
|
|
}
|
2019-12-22 00:22:32 +01:00
|
|
|
}
|