From: Victor Julien Date: Tue, 24 Mar 2020 18:12:18 +0000 (+0100) Subject: windows: skip tests that check for uid X-Git-Tag: suricata-6.0.4~322 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fef693e816112fcb838843cd99625d7e324518f;p=thirdparty%2Fsuricata-verify.git windows: skip tests that check for uid --- diff --git a/run.py b/run.py index 24f715882..f790478e6 100755 --- a/run.py +++ b/run.py @@ -409,6 +409,8 @@ class TestRunner: for skip in self.config["skip"]: if "uid" in skip: + if WIN32: + raise UnsatisfiedRequirementError("uid based skip not supported on Windows") if os.getuid() == skip["uid"]: if "msg" in skip: msg = skip["msg"]