Skip to content

Commit

Permalink
Merge pull request #1679 from ESMCI/dqwu/fix_xml_schemas_alcf
Browse files Browse the repository at this point in the history
Fix XML schemas error for ALCF's Mira/Cetus
Reorder the sequences of init_path and cmd_path for Mira/Cetus
in config_machines.xml. All of the init_path statements should
precede the cmd_path statements, otherwise there is an error on
schemas validity in phase 'XML'.

Test suite:
Test baseline:
Test namelist changes:
Test status:

Fixes #1659

User interface changes?:

Code review:jedwards
  • Loading branch information
jedwards4b authored Jun 12, 2017
2 parents 876b6fe + e92b19b commit d0d6648
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/acme/machines/config_machines.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1057,8 +1057,8 @@
</mpirun>
<module_system type="soft">
<init_path lang="csh">/etc/profile.d/00softenv.csh</init_path>
<cmd_path lang="csh">soft</cmd_path>
<init_path lang="sh">/etc/profile.d/00softenv.sh</init_path>
<cmd_path lang="csh">soft</cmd_path>
<cmd_path lang="sh">soft</cmd_path>
<modules>
<command name="add">+mpiwrapper-xl</command>
Expand Down Expand Up @@ -1150,8 +1150,8 @@
</mpirun>
<module_system type="soft">
<init_path lang="csh">/etc/profile.d/00softenv.csh</init_path>
<cmd_path lang="csh">soft</cmd_path>
<init_path lang="sh">/etc/profile.d/00softenv.sh</init_path>
<cmd_path lang="csh">soft</cmd_path>
<cmd_path lang="sh">soft</cmd_path>
<modules>
<command name="add">+mpiwrapper-xl</command>
Expand Down

0 comments on commit d0d6648

Please sign in to comment.