File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ addons:
18
18
- kalakris-cmake
19
19
- ubuntu-toolchain-r-test
20
20
packages :
21
- - gfortran-5.1
21
+ - gfortran-4.9
22
22
- binutils
23
23
- cmake
24
24
- python-pip
@@ -53,10 +53,10 @@ install:
53
53
mkdir "$HOME/.local/bin"
54
54
fi
55
55
- 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
60
60
- |
61
61
if ! which f90split; then
62
62
wget http://people.sc.fsu.edu/~jburkardt/f_src/f90split/f90split.f90 && \
Original file line number Diff line number Diff line change @@ -158,8 +158,11 @@ subroutine test_2(error_cnt)
158
158
else
159
159
! now, change one and verify that they are independent:
160
160
call json_update(p_clone,' inputs.integer_scalar' ,100 ,found)
161
+ if (json_failed()) write (error_unit,' (A)' ) ' json_update Error for p_clone'
161
162
call json_get(p,' inputs.integer_scalar' ,ival)
163
+ if (json_failed()) write (error_unit,' (A)' ) ' json_get Error for p'
162
164
call json_get(p_clone,' inputs.integer_scalar' ,ival_clone)
165
+ if (json_failed()) write (error_unit,' (A)' ) ' json_get Error for p_clone'
163
166
if (json_failed()) then
164
167
call json_print_error_message(error_unit)
165
168
error_cnt = error_cnt + 1
You can’t perform that action at this time.
0 commit comments