Skip to content
Snippets Groups Projects
Commit dd532463 authored by Deike Kleberg's avatar Deike Kleberg
Browse files

Add parallel I/O test programs to build.

parent e7ccd25b
No related branches found
No related tags found
No related merge requests found
## Process this file with automake to produce Makefile.in
#
SUBDIRS = src interfaces app examples tests
SUBDIRS = src interfaces app examples tests pioExamples
#
EXTRA_DIST=config/default doc/cdi_cman.pdf doc/cdi_fman.pdf src/cfortran.doc
#
......
......@@ -267,7 +267,7 @@ top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
#
SUBDIRS = src interfaces app examples tests
SUBDIRS = src interfaces app examples tests pioExamples
#
EXTRA_DIST = config/default doc/cdi_cman.pdf doc/cdi_fman.pdf src/cfortran.doc
#
......
......@@ -24397,7 +24397,7 @@ fi
 
 
 
ac_config_files="$ac_config_files Makefile src/Makefile interfaces/Makefile app/Makefile tests/Makefile examples/Makefile cdi.settings"
ac_config_files="$ac_config_files Makefile src/Makefile interfaces/Makefile app/Makefile tests/Makefile examples/Makefile cdi.settings pioExamples/Makefile"
 
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
......@@ -25692,6 +25692,7 @@ do
"tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
"examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;;
"cdi.settings") CONFIG_FILES="$CONFIG_FILES cdi.settings" ;;
"pioExamples/Makefile") CONFIG_FILES="$CONFIG_FILES pioExamples/Makefile" ;;
 
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
esac
......
......@@ -180,7 +180,9 @@ ACX_CHECK_CFINT([$srcdir/src/cfortran.h])
AC_SUBST([CPPFLAGS])
AC_OUTPUT(Makefile src/Makefile interfaces/Makefile app/Makefile tests/Makefile examples/Makefile cdi.settings)
AC_OUTPUT([Makefile src/Makefile interfaces/Makefile app/Makefile \
tests/Makefile examples/Makefile cdi.settings \
pioExamples/Makefile])
# ----------------------------------------------------------------------
# Show configuration
......
......@@ -424,7 +424,7 @@ PROGRAM CDIWRITE
WRITE ( 0, * ) '------------------------------------------------------------------'
END IF
CALL FLUSH ( 0 )
FLUSH ( 0 )
CALL MPI_COMM_FREE ( pioComm, error )
CALL MPI_FINALIZE ( error )
......@@ -438,7 +438,7 @@ PROGRAM CDIWRITE
WRITE ( 0, * ) 'MAIN: Close time:', sumCLOSE, 's'
WRITE ( 0, * ) '------------------------------------------------------------------'
CALL FLUSH ( 0 )
FLUSH ( 0 )
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment