MPE/iX - CI Programming for Stability

July 18, 2008 HP World '01 39
Pass two...
Lets add some real error handling and make the output more
user friendly
PARM fileset=@.@.@
# (same comments in the beginning as previous version...)
purge progf >$null
purge versf >$null
(same BUILD and FILE eq as before...)
errclear
continue
listfile !fileset, 6;seleq=[code=NMPRG] >*x
if hpcierr <> 0 then
echo !hpcierrmsg
return
endif
continue
listfile !fileset, 6;seleq=[code=PROG] >>*x
if hpcierr <> 0 then
ditto...
...