-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2284 from edwardhartnett/ejh_pnetcdf_tests
fixing some of the problems with nc_test when --enable-pnetcdf is used
- Loading branch information
Showing
6 changed files
with
57 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
|
||
# This script runs some PnetCDF I/O tests | ||
|
||
set -e | ||
echo | ||
echo "Testing file created with PnetCDF is modifiable with netCDF..." | ||
./tst_pnetcdf | ||
|
||
echo "Testing file created with PnetCDF works when adding variables..." | ||
./tst_addvar tst_pnetcdf.nc | ||
|
||
# We assume a min of at least 2 processors is available | ||
@MPIEXEC@ -n 2 ./tst_parallel2 | ||
|
||
# These tests work in either serial or parallel builds. | ||
@MPIEXEC@ -n 1 ./t_nc | ||
@MPIEXEC@ -n 1 ./tst_atts3 | ||
@MPIEXEC@ -n 1 ./tst_nofill | ||
@MPIEXEC@ -n 1 ./nc_test | ||
@MPIEXEC@ -n 1 ./tst_default_format_pnetcdf | ||
@MPIEXEC@ -n 1 ./tst_small | ||
@MPIEXEC@ -n 1 ./tst_formatx_pnetcdf | ||
@MPIEXEC@ -n 1 ./tst_cdf5format | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters