mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
2420b69a83
re: Issue https://github.com/Unidata/netcdf-c/issues/1365 At some point (4.6.1) we changed the diskless handling of flags and added a new NC_PERSIST flag. Looks like we did not fix all occurrences of the old flag set, specifically for 'nccopy -w' command. Also added some tests (tst_nccopy_w{3,4}.sh) for this situation.
16 lines
181 B
Plaintext
16 lines
181 B
Plaintext
netcdf nccopy_w {
|
|
dimensions:
|
|
d = 3 ;
|
|
variables:
|
|
byte b(d) ;
|
|
short s(d) ;
|
|
int i(d) ;
|
|
data:
|
|
|
|
b = -127, 127, -1 ;
|
|
|
|
s = 32767, -32766, -1 ;
|
|
|
|
i = -2147483646, 2147483647, -1 ;
|
|
}
|