Changeset 779
- Timestamp:
- Nov 16, 2007 11:12:18 PM (12 years ago)
- Location:
- branches/testScripts
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/testScripts/NBbuildConfig.py
r775 r779 349 349 # Source is now available, so now it is time to run vcbuild 350 350 #--------------------------------------------------------------------- 351 352 slnFileDir = os.path.join(projectCheckOutDir,\ 351 352 if configuration.has_key('slnDir') : 353 slnFileDir = os.path.join(projectCheckOutDir,configuration['slnDir']) 354 else : 355 slnFileDir = os.path.join(projectCheckOutDir,\ 353 356 configuration['project'],\ 354 357 'MSVisualStudio',\ -
branches/testScripts/NBprojectConfig.py
r774 r779 19 19 CFG_BLD_TEST = {} 20 20 SLN_FILE = {} 21 SLN_DIR = {} 21 22 22 23 … … 157 158 {'dir':'', 158 159 'cmd':'make test', 159 'check':[ NBcheckResult.rc0 160 #,NBcheckResult.standardSuccessMessage 161 ] } ] 160 'check':[ NBcheckResult.rc0 ] } ] 162 161 #third party packages are not optional here 163 162 … … 180 179 NBcheckResult.standardSuccessMessage ] } ] 181 180 SLN_FILE['FlopC++']=r'FlopCpp.sln' 181 SLN_DIR['FlopC++']=r'FlopCpp\MSVisualStudio\v8' 182 182 SLN_BLD_TEST['FlopC++']=[ 183 183 {'dir':r'FlopCpp\MSVisualStudio\v8\Release', -
branches/testScripts/nightlyBuild.py
r776 r779 28 28 # TODO: 29 29 # -Reduce size of email messages. 30 # -Get working on windows30 # -Get config style build working on Windows 31 31 32 32 … … 226 226 else : 227 227 configuration.pop('slnFile') 228 configuration['slnDir']='' 229 if NBprojectConfig.SLN_DIR.has_key(p) : 230 configuration['slnDir']=NBprojectConfig.SLN_DIR[p] 231 else : 232 configuration.pop('slnDir') 233 228 234 229 235 #--------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.