From 806fd0990e8bc48ca2db34cc3bb8925f9168e20d Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sun, 2 Aug 2020 09:17:02 +0200 Subject: [PATCH] Add temporary skip of rtests using shapefile for Windows MSBuild Debug Fails because of https://gitlab.com/graphviz/graphviz/-/issues/1787 --- rtest/rtest.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/rtest/rtest.py b/rtest/rtest.py index a6196ca1e..2d5778e2f 100755 --- a/rtest/rtest.py +++ b/rtest/rtest.py @@ -253,6 +253,17 @@ def doTest(TEST): .format(TESTNAME, i, ' '.join(SUBTEST['FLAGS'])), file=sys.stderr) continue + # FIXME: Remove when https://gitlab.com/graphviz/graphviz/-/issues/1787 is + # fixed + if platform.system() == 'Windows' and \ + os.environ.get('build_system') == 'msbuild' and \ + os.environ.get('configuration') == 'Debug' and \ + TESTNAME == 'user_shapes': + print('Skipping test {0}:{1} : using shapefile because it fails ' + 'with Windows MSBuild Debug builds (#1787)' + .format(TESTNAME, i, ' '.join(SUBTEST['FLAGS'])), + file=sys.stderr) + continue result = subprocess.Popen( testcmd, -- 2.40.0