netcdf-c/libdispatch/defcheck.c
Dennis Heimbigner 00e50f5a44 1. changed from using port 8080 to 8081 for motherlode
2. Fixed Ward's IGNORE problem with oc
3. Mmap support now works.
4. Fix an uninitialized variable pointed out by Russ in dnclog.c
2012-04-22 20:34:21 +00:00

43 lines
843 B
C

#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <netcdf.h>
#define URL "http://motherlode.ucar.edu:8081/dts/test.02"
#define VAR "i32"
#define ERRCODE 2
#define ERR(e) {printf("Error: %s\n", nc_strerror(e)); exit(ERRCODE);}
#undef DEBUG
int
main()
{
int ncid, varid;
int retval;
int i32[100];
size_t start[1];
size_t count[1];
int ok = 1;
if ((retval = nc_open(URL, 0, &ncid)))
ERR(retval);
if ((retval = nc_inq_varid(ncid, VAR, &varid)))
ERR(retval);
start[0] = 0;
count[0] = 26;
if ((retval = nc_get_vara_int(ncid, varid, start, count, i32)))
if(retval != NC_EINVALCOORDS) {
printf("nc_get_vara_int did not return NC_EINVALCOORDS");
ok = 0;
}
nc_close(ncid);
printf(ok?"*** PASS\n":"*** FAIL\n");
return 0;
}