From fd19ba0e251bf033cb2f39dca0189a6684d74858 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sat, 1 Aug 2020 00:03:05 +0200 Subject: [PATCH] Add temporary skip of format png:gd for Windows CMake rtest Fails because of https://gitlab.com/graphviz/graphviz/-/issues/1786 --- rtest/rtest.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/rtest/rtest.py b/rtest/rtest.py index 81d06bdc1..7ad366ae3 100755 --- a/rtest/rtest.py +++ b/rtest/rtest.py @@ -232,6 +232,16 @@ def doTest(TEST): print(' '.join(testcmd)) if NOOP: continue + # FIXME: Remove when https://gitlab.com/graphviz/graphviz/-/issues/1786 is + # fixed + if platform.system() == 'Windows' and \ + os.environ.get('build_system') == 'cmake' and \ + SUBTEST['FMT'] == 'png:gd': + print('Skipping test {0}:{1} : format {2} because Windows CMake builds ' + 'does not support format png:gd (#1786)' + .format(TESTNAME, i, SUBTEST['FMT']), + file=sys.stderr) + continue result = subprocess.Popen( testcmd, -- 2.50.1