 
            Module: ppl/ppl Branch: master Commit: e2d19cc02bd118889b845739d60bafa3dd4b5b7a URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=e2d19cc02bd11...
Author: Enea Zaffanella zaffanella@cs.unipr.it Date: Mon Apr 23 09:49:04 2012 +0200
test01() no longer overflows with 8-bits and assertions on C polyhedra.
---
tests/Polyhedron/boundedh79extrapolation1.cc | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/tests/Polyhedron/boundedh79extrapolation1.cc b/tests/Polyhedron/boundedh79extrapolation1.cc index 6478e03..bb8025a 100644 --- a/tests/Polyhedron/boundedh79extrapolation1.cc +++ b/tests/Polyhedron/boundedh79extrapolation1.cc @@ -71,5 +71,11 @@ test01() { } // namespace
BEGIN_MAIN +// Note: test01() only overflows on NNC polyhedra +// (with 8-bit coefficients and assertions turned on). +#ifdef DERIVED_TEST DO_TEST_F8A(test01); +#else + DO_TEST(test01); +#endif END_MAIN