From: Magnus Jacobsson Date: Thu, 20 Aug 2020 14:14:27 +0000 (+0200) Subject: Skip execution of segfaulting neatopack.c in test examples X-Git-Tag: 2.46.0~20^2^2~110^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=291b7a40f742551797e5681acbb8f5662c084822;p=graphviz Skip execution of segfaulting neatopack.c in test examples Fails because of https://gitlab.com/graphviz/graphviz/-/issues/1800 --- diff --git a/rtest/test_examples.py b/rtest/test_examples.py index 788466af0..d4c052e5a 100644 --- a/rtest/test_examples.py +++ b/rtest/test_examples.py @@ -47,6 +47,11 @@ def test_compile_example(src): subprocess.check_call([cc, '-o', exe, filepath] + ['-l{}'.format(l) for l in libs]) + # FIXME: Remove skip of execution of neatopack.c example when + # https://gitlab.com/graphviz/graphviz/-/issues/1800 has been fixed + if src == 'neatopack.c': + pytest.skip('Executing neatopack gives segmentation fault (#1800)') + # run the example args = ['-Kneato'] if src in ['demo.c', 'dot.c'] else [];