Changeset 647
- Timestamp:
- Oct 21, 2007 11:33:34 AM (13 years ago)
- Location:
- branches/testScripts
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/testScripts/NBcheckResult.py
r646 r647 51 51 if not re.compile(reexp).match(msgTail,1) : 52 52 # message not found, assume test failed 53 retVal = "Did not disp aly message 'cbc_clp solved 2 out of 2 and took XX.XX seconds.'"53 retVal = "Did not display message 'cbc_clp solved 2 out of 2 and took XX.XX seconds.'" 54 54 55 55 # Cbc's "./cbc -unitTest dirNetlib=_MIPLIB3DIR_ -miplib" -
branches/testScripts/NBosCommand.py
r632 r647 5 5 6 6 #------------------------------------------------------------------------ 7 # Run a an OS command in another process.7 # Run an OS command in another process. 8 8 # Examples might be 'svn checkout', 'make test'. 9 9 # Return: command's return code, stdout messages, & stderr messages -
branches/testScripts/NBuserConfig.py
r643 r647 4 4 5 5 #---------------------------------------------------------------------- 6 # This file contains variables that person running this sc irpt6 # This file contains variables that person running this script 7 7 # might need to change. 8 8 #---------------------------------------------------------------------- … … 24 24 elif gethostname()=='kmartin-maclt.local' : 25 25 NIGHTLY_BUILD_ROOT_DIR = '/Users/kmartin/COIN' 26 elif gethostname()=='fitzgeralds' : 27 NIGHTLY_BUILD_ROOT_DIR = '/home/stefan/globopt/nightlyBuild' 26 28 27 29 … … 101 103 MY_EMAIL_ADDR='kipp _DOT_ martin _AT_ chicagogsb _DOT_ edu' 102 104 SEND_MAIL_TO_PROJECT_MANAGER=0 105 elif gethostname()=='fitzgeralds' : 106 SMTP_SERVER_NAME = 'smtp.1und1.de' 107 SMTP_SERVER_PORT = 25 108 SMTP_SSL_SERVER = 0 109 SMTP_USER_NAME = 'm40378980-stef' 110 SMTP_PASSWORD_FILENAME = '/home/stefan/globopt/testScripts/smtpPwFile' 111 SENDER_EMAIL_ADDR='stefan _AT_ vigerske _DOT_ de' 112 MY_EMAIL_ADDR='stefan _AT_ vigerske _DOT_ de' 113 SEND_MAIL_TO_PROJECT_MANAGER=0 103 114 104 115 … … 119 130 elif gethostname()=='JPF4' : 120 131 DOWNLOAD_3RD_PARTY=1 121 132 elif gethostname()=='fitzgeralds' : 133 DOWNLOAD_3RD_PARTY=1 122 134 123 135 #---------------------------------------------------------------------- -
branches/testScripts/nightlyBuild.py
r645 r647 3 3 import os 4 4 import sys 5 import distutils.dir_util5 #import distutils.dir_util 6 6 7 7 import NBuserConfig … … 83 83 84 84 #--------------------------------------------------------------------- 85 # If there is are third partapps, then get these apps85 # If there are third party apps, then get these apps 86 86 #--------------------------------------------------------------------- 87 87 if NBuserConfig.DOWNLOAD_3RD_PARTY :
Note: See TracChangeset
for help on using the changeset viewer.