Changeset 592 for branches/devel/Cbc/test
- Timestamp:
- Mar 30, 2007 5:16:44 PM (14 years ago)
- Location:
- branches/devel/Cbc/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/devel/Cbc/test/Makefile.am
r372 r592 13 13 ######################################################################## 14 14 15 # We are using the Cbc solver executable to do the unit test 15 CBC_TEST_TGTS = 16 16 17 test: ../src/cbc-generic$(EXEEXT) ../src/cbc$(EXEEXT) 17 if COIN_HAS_CLP 18 CBC_TEST_TGTS += test_cbc 19 endif 20 if CBC_BUILD_CBC_GENERIC 21 CBC_TEST_TGTS += test_cbc_generic 22 endif 23 24 # We are using the solver executables to do the unit test 25 26 test: $(CBC_TEST_TGTS) 27 28 test_cbc: ../src/cbc$(EXEEXT) 18 29 cd ../../Data/Netlib; make uncompress 19 30 cd ../../Data/miplib3; make uncompress 20 ../src/cbc-generic$(EXEEXT) -miplib -unitTest 21 ../src/cbc$(EXEEXT) -unitTest -netlib 31 ../src/cbc$(EXEEXT) -unitTest -netlib -miplib 32 33 test_cbc_generic: ../src/cbc-generic$(EXEEXT) 34 echo "A minimal test is all that cbc-generic can manage just yet." 35 ../src/cbc-generic$(EXEEXT) \ 36 -directory ../../Data/miplib3 -import p0033 -branch 22 37 23 38 .PHONY: test -
branches/devel/Cbc/test/Makefile.in
r547 r592 42 42 build_triplet = @build@ 43 43 host_triplet = @host@ 44 @COIN_HAS_CLP_TRUE@am__append_1 = test_cbc 45 @CBC_BUILD_CBC_GENERIC_TRUE@am__append_2 = test_cbc_generic 44 46 subdir = test 45 47 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in … … 75 77 CBCOBJDIR = @CBCOBJDIR@ 76 78 CBCSRCDIR = @CBCSRCDIR@ 79 CBC_BUILD_CBC_GENERIC_FALSE = @CBC_BUILD_CBC_GENERIC_FALSE@ 80 CBC_BUILD_CBC_GENERIC_TRUE = @CBC_BUILD_CBC_GENERIC_TRUE@ 77 81 CC = @CC@ 78 82 CCDEPMODE = @CCDEPMODE@ … … 253 257 254 258 ######################################################################## 259 # unitTest for Cbc # 260 ######################################################################## 261 CBC_TEST_TGTS = $(am__append_1) $(am__append_2) 262 263 ######################################################################## 255 264 # Cleaning stuff # 256 265 ######################################################################## … … 421 430 422 431 423 ######################################################################## 424 # unitTest for Cbc # 425 ######################################################################## 426 427 # We are using the Cbc solver executable to do the unit test 428 429 test: ../src/cbc-generic$(EXEEXT) ../src/cbc$(EXEEXT) 432 # We are using the solver executables to do the unit test 433 434 test: $(CBC_TEST_TGTS) 435 436 test_cbc: ../src/cbc$(EXEEXT) 430 437 cd ../../Data/Netlib; make uncompress 431 438 cd ../../Data/miplib3; make uncompress 432 ../src/cbc-generic$(EXEEXT) -miplib -unitTest 433 ../src/cbc$(EXEEXT) -unitTest -netlib 439 ../src/cbc$(EXEEXT) -unitTest -netlib -miplib 440 441 test_cbc_generic: ../src/cbc-generic$(EXEEXT) 442 echo "A minimal test is all that cbc-generic can manage just yet." 443 ../src/cbc-generic$(EXEEXT) \ 444 -directory ../../Data/miplib3 -import p0033 -branch 434 445 435 446 .PHONY: test
Note: See TracChangeset
for help on using the changeset viewer.