diff -r b6bad215bccd -r 7a833615b224 test/lp_test.cc --- a/test/lp_test.cc Thu Oct 17 15:09:30 2013 +0200 +++ b/test/lp_test.cc Thu Oct 24 13:04:49 2013 +0200 @@ -39,6 +39,9 @@ #include #endif +#ifdef LEMON_HAVE_LP +#include +#endif using namespace lemon; int countCols(LpBase & lp) { @@ -416,6 +419,15 @@ LpSkeleton lp_skel; lpTest(lp_skel); +#ifdef LEMON_HAVE_LP + { + Lp lp,lp2; + lpTest(lp); + aTest(lp2); + cloneTest(); + } +#endif + #ifdef LEMON_HAVE_GLPK { GlpkLp lp_glpk1,lp_glpk2;