Skip to content

Commit

Permalink
tests: skip testing `v -os windows -experimental -b native -o hw.exe …
Browse files Browse the repository at this point in the history
…examples/hello_world.v` on !windows
  • Loading branch information
spytheman committed Sep 27, 2023
1 parent e115d44 commit b3ee304
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions cmd/tools/vtest-all.v
Expand Up @@ -168,10 +168,12 @@ fn get_all_commands() []Command {
okmsg: 'V compiles hello_world.v on the native backend for macos'
rmfile: 'hw.macos'
}
res << Command{
line: '${vexe} -os windows -experimental -b native -o hw.exe examples/hello_world.v'
okmsg: 'V compiles hello_world.v on the native backend for windows'
rmfile: 'hw.exe'
$if windows {
res << Command{
line: '${vexe} -os windows -experimental -b native -o hw.exe examples/hello_world.v'
okmsg: 'V compiles hello_world.v on the native backend for windows'
rmfile: 'hw.exe'
}
}
//
res << Command{
Expand Down

0 comments on commit b3ee304

Please sign in to comment.