Skip to content

Commit

Permalink
Ignore NcML file meant for modificaiton testing
Browse files Browse the repository at this point in the history
modifyNestedGroups.xml is intended to apply to an already existing NetcdfDataset object using NcmlReader.wrapNcml, and isn't appropriate for use by the TestNcmlReadersComnpare test, which expects the NcML to fully define a dataset or reference one directly in the document.
  • Loading branch information
lesserwhirls committed Jan 3, 2025
1 parent df89e71 commit 2ed0cf1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ public boolean accept(File pathname) {
// NcMLReader does not change variable to type int, so fails.
if (name.contains("aggSynthetic.xml"))
return false;
// Simulates a TDS datasetScan using NcML and does not fully define a dataset.
if (name.contains("modifyNestedGroups.xml"))
return false;
// Bug in old reader
if (name.contains("testStandaloneNoEnhance.ncml"))
return false;
Expand Down

0 comments on commit 2ed0cf1

Please sign in to comment.