]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fortran: Add newline character to test input.
authorJerry DeLisle <jvdelisle@gcc.gnu.org>
Wed, 31 Jul 2024 15:58:17 +0000 (08:58 -0700)
committerJerry DeLisle <jvdelisle@gcc.gnu.org>
Wed, 31 Jul 2024 19:56:50 +0000 (12:56 -0700)
gcc/testsuite/ChangeLog:

PR libfortran/105361

* gfortran.dg/pr105361.f90: Add newline character to test
input to provide more compliant test.

gcc/testsuite/gfortran.dg/pr105361.f90

index e2d3b07cacaabb7bcf7caedbe1cd405d07cefc75..62821c2802dfd08315fce1293b6de7452b1a2334 100644 (file)
@@ -27,7 +27,7 @@ program main
   type(foo) :: a, b
   real :: c, d
   open(10, access="stream") 
-  write(10) "1 2" // NEW_LINE('A')
+  write(10) "1 2" // NEW_LINE('A')
   close(10)
   open(10)
   read(10,*) c, d