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

picoev, picohttparser: reimplement in V (#18506)

This commit is contained in:
Casper Kuethe
2023-07-12 08:40:16 +02:00
committed by GitHub
parent 045adb6600
commit a43064af07
16 changed files with 1654 additions and 261 deletions

View File

@@ -24,8 +24,6 @@ const (
'crypto.rand',
'os.bare',
'os2',
'picohttpparser',
'picoev',
'szip',
'v.eval',
]

View File

@@ -625,9 +625,8 @@ pub fn prepare_test_session(zargs string, folder string, oskipped []string, main
continue
}
$if windows {
// skip pico and process/command examples on windows
if fnormalised.ends_with('examples/pico/pico.v')
|| fnormalised.ends_with('examples/process/command.v') {
// skip process/command examples on windows
if fnormalised.ends_with('examples/process/command.v') {
continue
}
}