Changeset 1276
- Timestamp:
- Nov 16, 2008, 7:25:53 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ReleaseTool.cmd
r1153 r1276 18 18 * wpi filenames 19 19 * warpin packageid/database version number(s) 20 * 21 * This program uses the following enviromental variables 22 * SVN_EDITOR to set the text editor that is called 23 * SVN_TESTER to call a cmd file that copies files to your test directory 24 * and changes to that directory 25 * SVN_KILL allows you to set a program to kill any running version of FM/2 26 * killpid is used as default (must be in path) 20 27 * 21 28 */ … … 34 41 35 42 36 globals = 'cmd prompt editor editorcmds '43 globals = 'cmd prompt editor editorcmds killpid tester killtarget' 37 44 38 45 parse arg ver next_ver … … 133 140 end 134 141 when action = 7 then 135 do /* Test built code */ 136 call NotYet action 137 say 'Test the built code.' 142 do /* Test built code */ 143 if tester == '' then 144 do 145 call NotYet action 146 say 'Test the built code.' 147 end 148 else 149 do /*kills FM/2 using killpid from FM/2 utils (must be in path) and run cmd to copy files 150 to test directory and change to that directory must type exit to return here*/ 151 killpid killtarget 152 cmd tester 153 end 138 154 end 139 155 when action = 8 then … … 160 176 when action = 11 then 161 177 do /* Test the binaries */ 162 call NotYet action 163 say 'Test the binaries.' 164 say 165 say 'At a minimum you should run all the exes and do some' 166 say 'basic file manipulation with each.' 167 say 168 say 'You should, where possible, also verify that any bugs' 169 say 'that were fixed for the release are working as expected.' 178 if tester == '' then 179 do 180 call NotYet action 181 say 'Test the binaries.' 182 say 183 say 'At a minimum you should run all the exes and do some' 184 say 'basic file manipulation with each.' 185 say 186 say 'You should, where possible, also verify that any bugs' 187 say 'that were fixed for the release are working as expected.' 188 end 189 else 190 do /*kills FM/2 using killpid from FM/2 utils (must be in path) and run cmd to copy files 191 to test directory and change to that directory must type exit to return here*/ 192 killpid killtarget 193 cmd tester 194 end 170 195 end 171 196 when action = 12 then … … 175 200 when action = 13 then 176 201 do /* Test the release code */ 177 call NotYet action 178 say 'Test the (compressed) release code.' 179 say 180 say 'Verify that all exe''s continue to load and run after being compressed.' 202 if tester == '' then 203 do 204 call NotYet action 205 say 'Test the (compressed) release code.' 206 say 207 say 'Verify that all exe''s continue to load and run after being compressed.' 208 end 209 else 210 do /*kills FM/2 using killpid from FM/2 utils (must be in path) and run cmd to copy files 211 to test directory and change to that directory must type exit to return here*/ 212 killpid killtarget 213 cmd tester 214 end 181 215 end 182 216 when action = 14 then … … 302 336 else 303 337 editorcmds = "" 304 338 305 339 cmd = value('COMSPEC',,'OS2ENVIRONMENT') 306 340 prompt = value('PROMPT',,'OS2ENVIRONMENT') 341 tester = value('SVN_TESTER',,'OS2ENVIRONMENT') 342 killpid = value('SVN_KILL',,'OS2ENVIRONMENT') 343 if killpid == '' then 344 killpid = 'killpid' 345 killtarget = ' FM/2' 307 346 return 308 347
Note:
See TracChangeset
for help on using the changeset viewer.