From 643bab710acccfb5ccaa9b8e0afdf442fe17f7d5 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sat, 1 Aug 2020 18:20:40 +0200 Subject: [PATCH] Add temporary skip of rtests using overlap=false for Windows MSBuild Fails because of https://gitlab.com/graphviz/graphviz/-/issues/1269 --- rtest/rtest.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/rtest/rtest.py b/rtest/rtest.py index 7ad366ae3..a6196ca1e 100755 --- a/rtest/rtest.py +++ b/rtest/rtest.py @@ -242,6 +242,17 @@ def doTest(TEST): .format(TESTNAME, i, SUBTEST['FMT']), file=sys.stderr) continue + # FIXME: Remove when https://gitlab.com/graphviz/graphviz/-/issues/1269 is + # fixed + if platform.system() == 'Windows' and \ + os.environ.get('build_system') == 'msbuild' and \ + '-Goverlap=false' in SUBTEST['FLAGS']: + print('Skipping test {0}:{1} : with flag -Goverlap=false because it fails ' + 'with Windows MSBuild builds which are not built with ' + 'triangulation library (#1269)' + .format(TESTNAME, i, ' '.join(SUBTEST['FLAGS'])), + file=sys.stderr) + continue result = subprocess.Popen( testcmd, -- 2.40.0