Commit 11bac67c by Kaveh R. Ghazi Committed by Kaveh Ghazi

re PR fortran/31616 (testsuite failures in gfortran.dg/open_errors.f90)

	PR fortran/31616
	* gfortran.dg/open_errors.f90: Allow a different error message.

From-SVN: r124059
parent 6c1e7e26
2007-04-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
PR fortran/31616
* gfortran.dg/open_errors.f90: Allow a different error message.
2007-04-23 Uros Bizjak <ubizjak@gmail.com> 2007-04-23 Uros Bizjak <ubizjak@gmail.com>
* lib/target-supports.exp (check_effective_target_vect_pack_trunc): * lib/target-supports.exp (check_effective_target_vect_pack_trunc):
...@@ -15,7 +15,7 @@ open(77,file=n,status="old", iomsg=msg, iostat=i) ...@@ -15,7 +15,7 @@ open(77,file=n,status="old", iomsg=msg, iostat=i)
if (msg /= "File 'temptestfile' does not exist") call abort() if (msg /= "File 'temptestfile' does not exist") call abort()
open(77,file="./", iomsg=msg, iostat=i) open(77,file="./", iomsg=msg, iostat=i)
if (msg /= "'./' is a directory") call abort() if (msg /= "'./' is a directory" .and. msg /= "Invalid argument") call abort()
open(77,file=n,status="new") open(77,file=n,status="new")
i = chmod(n, "-w") i = chmod(n, "-w")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment