Opened 11 years ago

Closed 11 years ago

#160 closed defect (fixed)

bug in IGCM_comp_GetInputRestartFiles on Ada

Reported by: lfairhead Owned by: sdipsl
Priority: major Milestone: libIGCM_v2.1 consolidation
Component: treatment Version:
Keywords: Restart files Cc:

Description

Around line 731 of libIGCM_comp.ksh, there is a test on the existence of directory ${RestartPath?}/${RestartJobName?}/RESTART that assumes that the archive machine filesystem is mounted on the computing machine, i.e:

if [ -d ${RestartPath}/${RestartJobName}/RESTART ] ; then

On ada at Idris, this is not (yet?) the case and the test fails, exiting the job. As a temporary measure, I have replaced that line with the following instructions:

  IGCM_sys_TestDirArchive ${RestartPath}/${RestartJobName}/RESTART
  if [ $? ] ; then

and the test is then successful

Change History (2)

comment:1 Changed 11 years ago by sdipsl

  • Milestone set to libIGCM_v2.1 consolidation
  • Owner changed from somebody to sdipsl
  • Status changed from new to assigned

comment:2 Changed 11 years ago by sdipsl

  • Resolution set to fixed
  • Status changed from assigned to closed

Done see r947

Note: See TracTickets for help on using tickets.