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

solaris & termux: fix both, using the more portable termios.h

This commit is contained in:
Delyan Angelov
2020-03-31 13:46:46 +03:00
committed by GitHub
parent 21e4f2422d
commit b62035e3d0
5 changed files with 10 additions and 9 deletions

View File

@ -24,10 +24,10 @@ pub fn new_test_session(_vargs string) TestSession {
mut skip_files := []string
skip_files << '_non_existing_'
$if solaris {
skip_files << "examples/gg2.v"
skip_files << "examples/gg/gg2.v"
skip_files << "examples/pico/pico.v"
skip_files << "examples/sokol_examples/fonts.v"
skip_files << "examples/sokol_examples/drawing.v"
skip_files << "examples/sokol/fonts.v"
skip_files << "examples/sokol/drawing.v"
}
vargs := _vargs.replace('-silent', '')
vexe := pref.vexe_path()