summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/elemental_by_value_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/elemental_by_value_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/elemental_by_value_1.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/elemental_by_value_1.f90 b/gcc/testsuite/gfortran.dg/elemental_by_value_1.f90
index 4fc59471b5b..10b2ce88671 100644
--- a/gcc/testsuite/gfortran.dg/elemental_by_value_1.f90
+++ b/gcc/testsuite/gfortran.dg/elemental_by_value_1.f90
@@ -17,6 +17,6 @@ end function
end function
end interface
- if (foo(42) .ne. 43) call abort
- if (any (foo([0,1]) .ne. [1,2])) call abort
+ if (foo(42) .ne. 43) STOP 1
+ if (any (foo([0,1]) .ne. [1,2])) STOP 2
end