- Timestamp:
- Oct 27, 2007 6:59:59 AM (13 years ago)
- Location:
- branches/testScripts
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/testScripts/NBprojectConfig.py
r706 r712 79 79 PROJECT_EMAIL_ADDRS['CppAD'] = 'bradbell _AT_ washington _DOT_ edu' 80 80 #does not have references to third party packages 81 82 #---------------------------------------------------------------------- 83 PROJECT_EMAIL_ADDRS['Smi'] = 'kingaj _AT_ us _DOT_ ibm _DOT_ com' 84 #does not have references to third party packages 85 #TODO: need some check whether make test was successful; what is the behaviour in Smi's unittest if it fails? -
branches/testScripts/NBuserParametersDefault.py
r707 r712 14 14 # List of Projects to be processed by script 15 15 #---------------------------------------------------------------------- 16 PROJECTS = ['CoinUtils',' DyLP','Clp','SYMPHONY','Vol','Osi','Cgl','Cbc','Ipopt','Bonmin','FlopC++','OS','CppAD']16 PROJECTS = ['CoinUtils','Clp','Osi','DyLP','SYMPHONY','Vol','Cgl','Cbc','Smi','FlopC++','Ipopt','Bonmin','OS','CppAD'] 17 17 18 18 #---------------------------------------------------------------------- … … 58 58 ,{ 'SvnVersion': 'latestStable', 'OptLevel': 'Debug', 'ThirdParty': 'No' } 59 59 ], 60 ' DyLP' :60 'Osi' : 61 61 [ 62 { 'Reference' : 'CoinUtils' } ,62 { 'Reference' : 'CoinUtils' } 63 63 ], 64 64 'Clp' : 65 65 [ 66 { 'Reference' : 'CoinUtils' }, 66 { 'Reference' : 'CoinUtils' } 67 ], 68 'DyLP' : 69 [ 70 { 'Reference' : 'CoinUtils' } 67 71 ], 68 72 'SYMPHONY' : 69 73 [ 70 { 'Reference' : 'CoinUtils' } ,74 { 'Reference' : 'CoinUtils' } 71 75 ], 72 76 'Vol' : 73 77 [ 74 { 'Reference' : 'CoinUtils' }, 75 ], 76 'Osi' : 77 [ 78 { 'Reference' : 'CoinUtils' }, 78 { 'Reference' : 'CoinUtils' } 79 79 ], 80 80 'Cgl' : 81 81 [ 82 { 'Reference' : 'CoinUtils' } ,82 { 'Reference' : 'CoinUtils' } 83 83 ], 84 84 'Cbc' : … … 93 93 } 94 94 ], 95 'Smi' : 96 [ 97 { 'Reference' : 'CoinUtils' } 98 ], 95 99 'FlopC++' : 96 100 [ 97 { 'Reference' : 'CoinUtils' } ,101 { 'Reference' : 'CoinUtils' } 98 102 ], 99 103 'Ipopt' : 100 104 [ 101 { 'SvnVersion': 'trunk', 'OptLevel': 'Default', 'ThirdParty':'Yes' } ,105 { 'SvnVersion': 'trunk', 'OptLevel': 'Default', 'ThirdParty':'Yes' } 102 106 ], 103 107 'Bonmin' : 104 108 [ 105 { 'Reference' : 'Ipopt' } ,109 { 'Reference' : 'Ipopt' } 106 110 ], 107 111 'OS' : -
branches/testScripts/README
r711 r712 20 20 4. Call configure. If there is an error, send a failure report as e-mail and break. 21 21 5. Call make. If there is an error, send a failure report as e-mail and break. 22 6. Call make test. If there is an error, send a failure report as e-mail and break.22 6. If the project has a test program, call make test. If there is an error, send a failure report as e-mail and break. 23 23 7. If the project has unit tests, call the unit tests. If there is an error, send a failure report as e-mail and break. 24 24
Note: See TracChangeset
for help on using the changeset viewer.