summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/derived_pointer_null_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/derived_pointer_null_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/derived_pointer_null_1.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/derived_pointer_null_1.f90 b/gcc/testsuite/gfortran.dg/derived_pointer_null_1.f90
index 3e7673f3bcd..def6998b8a1 100644
--- a/gcc/testsuite/gfortran.dg/derived_pointer_null_1.f90
+++ b/gcc/testsuite/gfortran.dg/derived_pointer_null_1.f90
@@ -15,10 +15,10 @@
real, target, dimension(10) :: rt
my_ast_obs%geopos => rt
- if (.not.associated (my_ast_obs%geopos)) call abort ()
+ if (.not.associated (my_ast_obs%geopos)) STOP 1
call get_null_ast_obs (my_ast_obs)
- if (associated (my_ast_obs%geopos)) call abort ()
+ if (associated (my_ast_obs%geopos)) STOP 2
CONTAINS