mirror of
https://github.com/vlang/v.git
synced 2025-09-15 15:32:27 +03:00
solaris: make 'v test-compiler' pass (stage 2)
This commit is contained in:
parent
a5c0d89c71
commit
ba088056ed
15 changed files with 236 additions and 9 deletions
|
@ -574,6 +574,15 @@ pub fn (v &V) v_files_from_dir(dir string) []string {
|
|||
if file.ends_with('_nix.v') && v.pref.os == .windows {
|
||||
continue
|
||||
}
|
||||
if file.ends_with('_android.v') && v.pref.os != .android {
|
||||
continue
|
||||
}
|
||||
if file.ends_with('_freebsd.v') && v.pref.os != .freebsd {
|
||||
continue
|
||||
}
|
||||
if file.ends_with('_solaris.v') && v.pref.os != .solaris {
|
||||
continue
|
||||
}
|
||||
if file.ends_with('_js.v') && v.pref.os != .js {
|
||||
continue
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue