summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/selected_kind_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/selected_kind_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/selected_kind_1.f9016
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/testsuite/gfortran.dg/selected_kind_1.f90 b/gcc/testsuite/gfortran.dg/selected_kind_1.f90
index 0c710546d4e..50524c5f5ed 100644
--- a/gcc/testsuite/gfortran.dg/selected_kind_1.f90
+++ b/gcc/testsuite/gfortran.dg/selected_kind_1.f90
@@ -3,14 +3,14 @@
! PR fortran/32968
program selected
- if (selected_int_kind (1) /= 1) call abort
- if (selected_int_kind (3) /= 2) call abort
- if (selected_int_kind (5) /= 4) call abort
- if (selected_int_kind (10) /= 8) call abort
- if (selected_real_kind (1) /= 4) call abort
- if (selected_real_kind (2) /= 4) call abort
- if (selected_real_kind (9) /= 8) call abort
- if (selected_real_kind (10) /= 8) call abort
+ if (selected_int_kind (1) /= 1) STOP 1
+ if (selected_int_kind (3) /= 2) STOP 2
+ if (selected_int_kind (5) /= 4) STOP 3
+ if (selected_int_kind (10) /= 8) STOP 4
+ if (selected_real_kind (1) /= 4) STOP 5
+ if (selected_real_kind (2) /= 4) STOP 6
+ if (selected_real_kind (9) /= 8) STOP 7
+ if (selected_real_kind (10) /= 8) STOP 8
end program selected