Skip to content

Commit 2cc1784

Browse files
committed
test(string): rm gfortran workaround
This commit removes gfortran bug workaround from the test suite because the bug is now handled by a workaround in the Julienne library and thus need not impact user code.
1 parent 979a6a2 commit 2cc1784

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

test/modules/test_diagnosis_test_m.F90

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,7 @@ function check_greater_than_integer() result(test_diagnosis)
217217
function check_less_than_or_equal_to_integer() result(test_diagnosis)
218218
type(test_diagnosis_t) test_diagnosis
219219
integer, parameter :: expected_max = 1
220-
#ifndef __GFORTRAN__
221220
test_diagnosis = .all. ([0,1] .lessThanOrEqualTo. expected_max)
222-
#else
223-
associate(test_diagnoses => ([0,1] .lessThanOrEqualTo. expected_max))
224-
test_diagnosis = .all. test_diagnoses
225-
end associate
226-
#endif
227221
end function
228222

229223
function check_greater_than_or_equal_to_integer() result(test_diagnosis)

0 commit comments

Comments
 (0)