* gfortran.dg/achar_2.f90: Print 'DONE' and add dg-output.
From-SVN: r277674
+2019-10-31 Tobias Burnus <tobias@codesourcery.com>
+
+ * gfortran.dg/achar_2.f90: Print 'DONE' and add dg-output.
+
2019-10-31 Andre Vieira <andre.simoesdiasvieira@arm.com>
* gcc.target/aarch64/sve/reduc_strict_3.c: Fix option order.
! { dg-do run }
! PR 30389 - we now treat ACHAR equivalent to CHAR (except for
! out of range-values) and IACHAR equivalent to ICHAR.
+! { dg-output
program main
integer :: i
character(len=1) :: c
c = "ÿ"
if (achar(i) /= "ÿ") STOP 1514
if (iachar(c) /= iachar("ÿ")) STOP 1515
+ print *, 'DONE'
end program main
+
+! DejaGNU only checks the exit code but 'STOP 256' has exit code 0. Hence,
+! check output for:
+! { dg-output "DONE" }