Skip to content

Commit

Permalink
turn off netcdf-integration in travis testing
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardhartnett committed Aug 5, 2020
1 parent 88cf3d1 commit 56243cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ before_script:
- export CPPFLAGS='-I/usr/include'
- wget https://parallel-netcdf.github.io/Release/pnetcdf-1.12.1.tar.gz
- tar -xzvf pnetcdf-1.12.1.tar.gz
- ls -l
- pushd pnetcdf-1.12.1
- ./configure --prefix=/usr --enable-shared
- make
Expand All @@ -44,7 +43,7 @@ script:
- export CFLAGS='-std=c99 -fsanitize=address -fno-omit-frame-pointer -Werror'
- export FFLAGS='-fsanitize=address -fno-omit-frame-pointer'
- export FCFLAGS='-fsanitize=address -fno-omit-frame-pointer -Werror'
- export DISTCHECK_CONFIGURE_FLAGS='--enable-fortran --enable-netcdf-integration'
- export DISTCHECK_CONFIGURE_FLAGS='--enable-fortran'
- ./configure --enable-fortran --enable-developer-docs
- make -j distcheck
- make -j distclean
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/basic_tests.F90
Original file line number Diff line number Diff line change
Expand Up @@ -285,15 +285,15 @@ Subroutine test_open(test_id, err_msg)
call mpi_abort(MPI_COMM_WORLD, 0, ret_val2)
end if

ret_val = PIO_set_log_level(3)
!ret_val = PIO_set_log_level(3)
ret_val = PIO_inq_unlimdim(pio_file, unlimdimid)
if(unlimdimid /= -1) then
err_msg = "Error in inq_unlimdim"
call PIO_closefile(pio_file)
print *,__FILE__,__LINE__,iotype, trim(err_msg)
call mpi_abort(MPI_COMM_WORLD, 0, ret_val2)
end if
ret_val = PIO_set_log_level(0)
!ret_val = PIO_set_log_level(0)

! Close file
call PIO_closefile(pio_file)
Expand Down

0 comments on commit 56243cf

Please sign in to comment.