test/Makefile.am
changeset 458 7afc121e0689
parent 445 75a5df083951
child 467 a1155a9e8e09
     1.1 --- a/test/Makefile.am	Mon Jan 12 12:22:11 2009 +0000
     1.2 +++ b/test/Makefile.am	Tue Dec 02 21:40:33 2008 +0100
     1.3 @@ -33,6 +33,13 @@
     1.4  	test/time_measure_test \
     1.5  	test/unionfind_test
     1.6  
     1.7 +if HAVE_LP
     1.8 +check_PROGRAMS += test/lp_test
     1.9 +endif HAVE_LP
    1.10 +if HAVE_MIP
    1.11 +check_PROGRAMS += test/mip_test
    1.12 +endif HAVE_MIP
    1.13 +
    1.14  TESTS += $(check_PROGRAMS)
    1.15  XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    1.16  
    1.17 @@ -51,7 +58,9 @@
    1.18  test_heap_test_SOURCES = test/heap_test.cc
    1.19  test_kruskal_test_SOURCES = test/kruskal_test.cc
    1.20  test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
    1.21 +test_lp_test_SOURCES = test/lp_test.cc
    1.22  test_maps_test_SOURCES = test/maps_test.cc
    1.23 +test_mip_test_SOURCES = test/mip_test.cc
    1.24  test_max_matching_test_SOURCES = test/max_matching_test.cc
    1.25  test_path_test_SOURCES = test/path_test.cc
    1.26  test_preflow_test_SOURCES = test/preflow_test.cc