From: Jason Ish Date: Wed, 7 Jul 2021 13:53:24 +0000 (-0600) Subject: file-compare: skip file-compare tests on Windows X-Git-Tag: suricata-6.0.4~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=493b912935c3bf3bd0704f5c4dc729b00d9a6e10;p=thirdparty%2Fsuricata-verify.git file-compare: skip file-compare tests on Windows These should work, but it looks like there is a path issue, so skip these tests on Windows until it can be fixed. --- diff --git a/run.py b/run.py index b782e51d4..2900c84db 100755 --- a/run.py +++ b/run.py @@ -313,6 +313,9 @@ class FileCompareCheck: self.directory = directory def run(self): + if WIN32: + print("skipping shell check on windows") + return True; expected = os.path.join(self.directory, self.config["expected"]) filename = self.config["filename"] if filecmp.cmp(expected, filename):