-
Notifications
You must be signed in to change notification settings - Fork 262
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
Alias stringlength url parameter and maxstrlen #619
Conversation
Some parameters like stringlength actually affect a dimension named maxStrlen. So, add some aliasing so maxstrlen can be specified as a parameter and as an alias for stringlength. The affected parameters (case insensitive): stringlength has alias maxstrlen stringlength_<varname> has alias maxstrlen_<varname> Also: 1. added a test case in ncdap_test/testurl.sh 2. added note to documentation
Still need to diagnose the issue, but I am seeing a lot of coredumps when I try to run tests on this branch. I'd suggest it's relatively low priority to get this in, but this is why it's currently languishing. I'll see if I can get a cdash output submitted and, if so, will post a link to the verbose results. |
Output is here: http://cdash.unidata.ucar.edu/viewTest.php?onlyfailed&buildid=2491 It is not particularly useful; the failures stem from failed |
Last travis output seems to indicate a memory allocation error. |
There was some kind of duplicated code problem that was causing all sorts of |
Excellent, thanks Dennis! |
re: esupport AVS-567793
Some parameters like stringlength actually affect a dimension
named maxStrlen. So, add some aliasing so maxstrlen can be
specified as a parameter and as an alias for stringlength.
The affected parameters (case insensitive):
stringlength has alias maxstrlen
stringlength_ has alias maxstrlen_
Also: