now properly running pnetcdf example program in parallel

This commit is contained in:
Ed Hartnett 2019-03-12 09:00:31 -06:00
parent 1077459a18
commit 39c258449c
3 changed files with 18 additions and 7 deletions

View File

@ -1491,6 +1491,7 @@ AC_CONFIG_FILES(ncdap_test/findtestserver.c:ncdap_test/findtestserver.c.in)
AC_CONFIG_FILES(dap4_test/findtestserver4.c:ncdap_test/findtestserver.c.in)
AC_CONFIG_FILES([nc_test4/run_par_test.sh], [chmod ugo+x nc_test4/run_par_test.sh])
AC_CONFIG_FILES([nc_test4/run_par_bm_test.sh], [chmod ugo+x nc_test4/run_par_bm_test.sh])
AC_CONFIG_FILES([examples/C/run_par_test.sh], [chmod ugo+x examples/C/run_par_test.sh])
AC_CONFIG_FILES([nc-config], [chmod 755 nc-config])
AC_CONFIG_FILES([Makefile
netcdf.pc

View File

@ -11,7 +11,8 @@
LDADD = -lm
AM_CPPFLAGS = -I$(top_srcdir)/include
AM_LDFLAGS =
AM_CPPFLAGS += -I$(top_builddir)/liblib
AM_LDFLAGS = ${top_builddir}/liblib/libnetcdf.la
# These are the netCDF-3 examples.
check_PROGRAMS = simple_xy_wr simple_xy_rd sfc_pres_temp_wr \
@ -21,7 +22,7 @@ TESTS = run_examples.sh
# To build netcdf-4, or not to build netcdf-4, that is the question...
if USE_HDF5
# These are the extra netCDF-4 examples.
# These are the netCDF-4 examples.
check_PROGRAMS += simple_nc4_wr simple_nc4_rd simple_xy_nc4_wr \
simple_xy_nc4_rd
@ -34,14 +35,11 @@ endif
endif #USE_HDF5
if USE_PNETCDF
# These are the extra netCDF-4 examples.
# This is a pnetcdf example.
check_PROGRAMS += parallel_vara
TESTS += parallel_vara
TESTS += run_par_test.sh
endif #USE_PNETCDF
AM_CPPFLAGS += -I$(top_builddir)/liblib
AM_LDFLAGS += ${top_builddir}/liblib/libnetcdf.la
if USE_HDF5
TESTS += run_examples4.sh
endif #USE_HDF5

View File

@ -0,0 +1,12 @@
#!/bin/sh
# This .in file is processed at build time into a shell that runs a
# parallel I/O example for pnetcdf.
# Ed Hartnett
set -e
echo
echo "Runnung pnetcdf parallel I/O example..."
@MPIEXEC@ -n 4 ./parallel_vara
echo '*** SUCCESS!!!'