-
Notifications
You must be signed in to change notification settings - Fork 67
Bug fix for XML schema 2.0: require valid Fortran IDs for schemes, groups, and suites #730
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
climbfuji
merged 9 commits into
NCAR:develop
from
climbfuji:bugfix/valid_fortran_id_for_scheme_group_suite_names
Apr 14, 2026
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
98d16cf
Bug fix in schema/suite_v2_0.xsd: use fortran_id_type_unique and fort…
climbfuji 9b7dbff
Add unit tests for valid Fortran IDs for schemes, groups, suites
climbfuji 224537c
Update schema/suite_v2_0.xsd
climbfuji cc1dca9
Merge branch 'develop' into bugfix/valid_fortran_id_for_scheme_group_…
climbfuji f7e9f7e
Merge branch 'develop' into bugfix/valid_fortran_id_for_scheme_group_…
climbfuji 0045b7f
Remove name attribute from subcycle element in schema/suite_v2_0.xsd
climbfuji bcc32dc
Rename suite definition files for unit tests that test catching inval…
climbfuji 1d7ee9c
Apply suggestion from @climbfuji
climbfuji fea5d82
Merge branch 'develop' into bugfix/valid_fortran_id_for_scheme_group_…
climbfuji File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
test/unit_tests/sample_suite_files/suite_invalid_group_fortran_id.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
|
|
||
| <suite name="ver_test_suite" version="2.0"> | ||
| <group name="group-1"> | ||
| <scheme>scheme1</scheme> | ||
| <scheme>scheme2</scheme> | ||
| </group> | ||
| </suite> |
8 changes: 8 additions & 0 deletions
8
test/unit_tests/sample_suite_files/suite_invalid_scheme_fortran_id.xml
|
gold2718 marked this conversation as resolved.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
|
|
||
| <suite name="ver_test_suite" version="2.0"> | ||
| <group name="group1"> | ||
| <scheme>scheme-1</scheme> | ||
| <scheme>scheme2</scheme> | ||
| </group> | ||
| </suite> |
8 changes: 8 additions & 0 deletions
8
test/unit_tests/sample_suite_files/suite_invalid_suite_fortran_id.xml
|
gold2718 marked this conversation as resolved.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
|
|
||
| <suite name="ver-test-suite" version="2.0"> | ||
| <group name="group1"> | ||
| <scheme>scheme1</scheme> | ||
| <scheme>scheme2</scheme> | ||
| </group> | ||
| </suite> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.