Changeset 4816


Ignore:
Timestamp:
Dec 9, 2020 3:39:57 PM (3 years ago)
Author:
gronemeier
Message:

bugfix for new config: updated palmtest and palmtutorial to handle new palm.iofiles, renamed reference files according to changed palm.iofiles

Location:
palm/trunk
Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/palmtest

    r4751 r4816  
    10391039                    iofiles_template = iofiles_template_file.read()
    10401040                with open(os.path.join(self.test_dir, '.palm.iofiles'), 'w') as iofiles_file:
    1041                     iofiles_file.write(iofiles_template.replace('$fast_io_catalog', '$base_data'))
     1041                    iofiles_file.write(iofiles_template.replace('$fast_io_catalog', '$base_data').replace('$restart_data_path', '$base_data').replace('$output_data_path', '$base_data'))
    10421042            except:
    10431043                logger.to_all('ERROR: No .palm.iofiles file was found in trunk/SCRIPTS/')
  • palm/trunk/SCRIPTS/palmtutorial

    r4091 r4816  
    10231023                    iofiles_template = iofiles_template_file.read()
    10241024                with open(os.path.join(self.test_dir, '.palm.iofiles'), 'w') as iofiles_file:
    1025                     iofiles_file.write(iofiles_template.replace('$fast_io_catalog', '$base_data'))
     1025                    iofiles_file.write(iofiles_template.replace('$fast_io_catalog', '$base_data').replace('$restart_data_path', '$base_data').replace('$output_data_path', '$base_data'))
    10261026            except:
    10271027                logger.to_all('ERROR: No .palm.iofiles file was found in trunk/SCRIPTS/')
Note: See TracChangeset for help on using the changeset viewer.