* python/Makefile.am (TESTS) [!HAVE_SWIG_1_3_39]: Remove dynamic-image2d-misc.py.
--- swilena/ChangeLog | 7 +++++++ swilena/python/Makefile.am | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/swilena/ChangeLog b/swilena/ChangeLog index 878fe63..1d9abbc 100644 --- a/swilena/ChangeLog +++ b/swilena/ChangeLog @@ -1,5 +1,12 @@ 2009-06-08 Roland Levillain roland@lrde.epita.fr
+ Disable test python/dynamic-image2d-misc.py with SWIG < 1.3.39. + + * python/Makefile.am (TESTS) [!HAVE_SWIG_1_3_39]: Remove + dynamic-image2d-misc.py. + +2009-06-08 Roland Levillain roland@lrde.epita.fr + * python/image2d-misc.py: Have this test pass with SWIG < 1.3.39.
2009-06-08 Roland Levillain roland@lrde.epita.fr diff --git a/swilena/python/Makefile.am b/swilena/python/Makefile.am index eb49d04..1525d5d 100644 --- a/swilena/python/Makefile.am +++ b/swilena/python/Makefile.am @@ -212,5 +212,11 @@ $(srcdir)/run.stamp: $(RUN_IN) # as `--python' to `run'. TESTS = \ box2d-misc.py \ - image2d-misc.py morpho-fun.py morpho-segm.py dynamic-image2d-misc.py + image2d-misc.py morpho-fun.py morpho-segm.py + +# Do no exercise tests known to fail with old versions of SWIG. +if HAVE_SWIG_1_3_39 +TESTS += dynamic-image2d-misc.py +endif HAVE_SWIG_1_3_39 + EXTRA_DIST += $(TESTS)