1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

builder: fix run & is_test check

This commit is contained in:
Alexander Medvednikov 2020-04-29 16:44:50 +02:00
parent be0e848ae8
commit 03cee3fee0

View File

@ -167,7 +167,7 @@ pub fn (v Builder) get_user_files() []string {
user_files << os.join_path(preludes_path, 'profiled_program.v')
}
is_test := dir.ends_with('_test.v')
if v.pref.is_run {
if v.pref.is_run && is_test {
println('use `v x_test.v` instead of `v run x_test.v`')
exit(1)
}