From 46f8e68bec96bbe56201c10208cfa1d3acf4fa03 Mon Sep 17 00:00:00 2001 From: Lukas Neubert Date: Sun, 7 Feb 2021 12:46:22 +0100 Subject: [PATCH] ci: skip process/command example on windows (#8617) --- cmd/tools/modules/testing/common.v | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/tools/modules/testing/common.v b/cmd/tools/modules/testing/common.v index c0cce6abf1..8dca75d1f4 100644 --- a/cmd/tools/modules/testing/common.v +++ b/cmd/tools/modules/testing/common.v @@ -339,8 +339,9 @@ pub fn prepare_test_session(zargs string, folder string, oskipped []string, main continue } $if windows { - // skip pico example on windows - if f.ends_with('examples\\pico\\pico.v') { + // skip pico and process/command examples on windows + if f.ends_with('examples\\pico\\pico.v') + || f.ends_with('examples\\process\\command.v') { continue } }