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:
parent
be0e848ae8
commit
03cee3fee0
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user