Skip to content

Commit d0adc46

Browse files
committed
well that didn't work.
1 parent df6a85d commit d0adc46

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ addons:
1818
- kalakris-cmake
1919
- ubuntu-toolchain-r-test
2020
packages:
21-
- gfortran-5.1
21+
- gfortran-4.9
2222
- binutils
2323
- cmake
2424
- python-pip
@@ -53,10 +53,10 @@ install:
5353
mkdir "$HOME/.local/bin"
5454
fi
5555
- export PATH="$HOME/.local/bin:$PATH"
56-
- export FC=/usr/bin/gfortran-5.1
57-
- ln -fs /usr/bin/gfortran-5.1 "$HOME/.local/bin/gfortran" && gfortran --version
58-
- ls -l /usr/bin/gfortran-5.1
59-
- ln -fs /usr/bin/gcov-5.1 "$HOME/.local/bin/gcov" && gcov --version
56+
- export FC=/usr/bin/gfortran-4.9
57+
- ln -fs /usr/bin/gfortran-4.9 "$HOME/.local/bin/gfortran" && gfortran --version
58+
- ls -l /usr/bin/gfortran-4.9
59+
- ln -fs /usr/bin/gcov-4.9 "$HOME/.local/bin/gcov" && gcov --version
6060
- |
6161
if ! which f90split; then
6262
wget http://people.sc.fsu.edu/~jburkardt/f_src/f90split/f90split.f90 && \

src/tests/jf_test_2.f90

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,11 @@ subroutine test_2(error_cnt)
158158
else
159159
!now, change one and verify that they are independent:
160160
call json_update(p_clone,'inputs.integer_scalar',100,found)
161+
if (json_failed()) write(error_unit,'(A)') 'json_update Error for p_clone'
161162
call json_get(p,'inputs.integer_scalar',ival)
163+
if (json_failed()) write(error_unit,'(A)') 'json_get Error for p'
162164
call json_get(p_clone,'inputs.integer_scalar',ival_clone)
165+
if (json_failed()) write(error_unit,'(A)') 'json_get Error for p_clone'
163166
if (json_failed()) then
164167
call json_print_error_message(error_unit)
165168
error_cnt = error_cnt + 1

0 commit comments

Comments
 (0)