public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [Fortran, committed] XFAIL read_dir.f90 on FreeBSD
@ 2015-09-01 18:16 Steve Kargl
  2015-09-01 18:18 ` Steve Kargl
  0 siblings, 1 reply; 6+ messages in thread
From: Steve Kargl @ 2015-09-01 18:16 UTC (permalink / raw)
  To: fortran, gcc-patches

I've committed the patch that follows my .sig.

2015-09-01  Steven G. Kargl  <kargl@gcc.gnu.org>

	* gfortran.dg/read_dir.f90: XFAIL this testcase on FreeBSD.
	Clean-up a created directory if testcase fails.

I suspect that this testcase will fail on all *BSD OS's.

-- 
Steve

Index: gfortran.dg/read_dir.f90
===================================================================
--- gfortran.dg/read_dir.f90	(revision 227380)
+++ gfortran.dg/read_dir.f90	(working copy)
@@ -1,4 +1,4 @@
-! { dg-do run }
+! { dg-do run { xfail *-*-freebsd* } }
 ! PR67367
 program bug
    implicit none
@@ -9,6 +9,11 @@ program bug
    open(unit=10, file='junko.dir',iostat=ios,action='read',access='stream')
    if (ios.ne.0) call abort
    read(10, iostat=ios) c
-   if (ios.ne.21) call abort
+   if (ios.ne.21) then 
+      close(10)
+      call system('rmdir junko.dir')
+      call abort
+   end if
+   close(10)
    call system('rmdir junko.dir')
 end program bug

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Fortran, committed] XFAIL read_dir.f90 on FreeBSD
  2015-09-01 18:16 [Fortran, committed] XFAIL read_dir.f90 on FreeBSD Steve Kargl
@ 2015-09-01 18:18 ` Steve Kargl
  2015-09-01 22:28   ` Jerry DeLisle
  0 siblings, 1 reply; 6+ messages in thread
From: Steve Kargl @ 2015-09-01 18:18 UTC (permalink / raw)
  To: fortran, gcc-patches

On Tue, Sep 01, 2015 at 11:16:27AM -0700, Steve Kargl wrote:
>     open(unit=10, file='junko.dir',iostat=ios,action='read',access='stream')
>     if (ios.ne.0) call abort
>     read(10, iostat=ios) c
> -   if (ios.ne.21) call abort
> +   if (ios.ne.21) then 
> +      close(10)

I forgot to mention that 'close(10, status="delete')' does not
work on a directory.  Should it?

> +      call system('rmdir junko.dir')
> +      call abort
> +   end if
> +   close(10)
>     call system('rmdir junko.dir')

-- 
Steve

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Fortran, committed] XFAIL read_dir.f90 on FreeBSD
  2015-09-01 18:18 ` Steve Kargl
@ 2015-09-01 22:28   ` Jerry DeLisle
  2015-09-02  8:30     ` Janne Blomqvist
  0 siblings, 1 reply; 6+ messages in thread
From: Jerry DeLisle @ 2015-09-01 22:28 UTC (permalink / raw)
  To: Steve Kargl, fortran, gcc-patches

On 09/01/2015 11:18 AM, Steve Kargl wrote:
> On Tue, Sep 01, 2015 at 11:16:27AM -0700, Steve Kargl wrote:
>>     open(unit=10, file='junko.dir',iostat=ios,action='read',access='stream')
>>     if (ios.ne.0) call abort
>>     read(10, iostat=ios) c
>> -   if (ios.ne.21) call abort
>> +   if (ios.ne.21) then 
>> +      close(10)
> 
> I forgot to mention that 'close(10, status="delete')' does not
> work on a directory.  Should it?
> 
>> +      call system('rmdir junko.dir')
>> +      call abort
>> +   end if
>> +   close(10)
>>     call system('rmdir junko.dir')
> 

Thanks for the touch up Steve.  I suspect other OS's will not work either.  I
assumed close with Status="delete" would not work on a directory.

Jerry

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Fortran, committed] XFAIL read_dir.f90 on FreeBSD
  2015-09-01 22:28   ` Jerry DeLisle
@ 2015-09-02  8:30     ` Janne Blomqvist
  2015-09-02 15:03       ` Steve Kargl
  0 siblings, 1 reply; 6+ messages in thread
From: Janne Blomqvist @ 2015-09-02  8:30 UTC (permalink / raw)
  To: Jerry DeLisle; +Cc: Steve Kargl, Fortran List, GCC Patches

On Wed, Sep 2, 2015 at 1:28 AM, Jerry DeLisle <jvdelisle@charter.net> wrote:
> On 09/01/2015 11:18 AM, Steve Kargl wrote:
>> On Tue, Sep 01, 2015 at 11:16:27AM -0700, Steve Kargl wrote:
>>>     open(unit=10, file='junko.dir',iostat=ios,action='read',access='stream')
>>>     if (ios.ne.0) call abort
>>>     read(10, iostat=ios) c
>>> -   if (ios.ne.21) call abort
>>> +   if (ios.ne.21) then
>>> +      close(10)
>>
>> I forgot to mention that 'close(10, status="delete')' does not
>> work on a directory.  Should it?
>>
>>> +      call system('rmdir junko.dir')
>>> +      call abort
>>> +   end if
>>> +   close(10)
>>>     call system('rmdir junko.dir')
>>
>
> Thanks for the touch up Steve.  I suspect other OS's will not work either.  I
> assumed close with Status="delete" would not work on a directory.

That's because libgfortran uses unlink(2), which only works for files,
not directories. One could change that to use remove(3), which works
for both.

Also, I suspect the reason why it fails on freebsd is that errno
EISDIR is not 21 there. Perhaps one should just check for ios /= 0?
Unfortunately the __linux__ define isn't available since the switch to
cpp (IIRC there is a PR for that), so it's not that straightforward to
check which platform one runs on.

-- 
Janne Blomqvist

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Fortran, committed] XFAIL read_dir.f90 on FreeBSD
  2015-09-02  8:30     ` Janne Blomqvist
@ 2015-09-02 15:03       ` Steve Kargl
  2015-09-03 21:58         ` Janne Blomqvist
  0 siblings, 1 reply; 6+ messages in thread
From: Steve Kargl @ 2015-09-02 15:03 UTC (permalink / raw)
  To: Janne Blomqvist; +Cc: Jerry DeLisle, Fortran List, GCC Patches

On Wed, Sep 02, 2015 at 11:30:07AM +0300, Janne Blomqvist wrote:
> On Wed, Sep 2, 2015 at 1:28 AM, Jerry DeLisle <jvdelisle@charter.net> wrote:
> > On 09/01/2015 11:18 AM, Steve Kargl wrote:
> >> On Tue, Sep 01, 2015 at 11:16:27AM -0700, Steve Kargl wrote:
> >>>     open(unit=10, file='junko.dir',iostat=ios,action='read',access='stream')
> >>>     if (ios.ne.0) call abort
> >>>     read(10, iostat=ios) c
> >>> -   if (ios.ne.21) call abort
> >>> +   if (ios.ne.21) then
> >>> +      close(10)
> >>
> >> I forgot to mention that 'close(10, status="delete')' does not
> >> work on a directory.  Should it?
> >>
> >>> +      call system('rmdir junko.dir')
> >>> +      call abort
> >>> +   end if
> >>> +   close(10)
> >>>     call system('rmdir junko.dir')
> >>
> >
> > Thanks for the touch up Steve.  I suspect other OS's will not work either.  I
> > assumed close with Status="delete" would not work on a directory.
> 
> That's because libgfortran uses unlink(2), which only works for files,
> not directories. One could change that to use remove(3), which works
> for both.

I suspect people who create directories and then 
want to delete them will use SYSTEM or the 
standard conforming equivalent.

> Also, I suspect the reason why it fails on freebsd is that errno
> EISDIR is not 21 there. Perhaps one should just check for ios /= 0?

I checked.  FreeBSD's EISDIR is 21; howevr, ios == 0 in this
case.  I haven't looked too deep.  FreeBSD is probably
adhering to the unix philosophy of "everything is a file".   

-- 
Steve

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Fortran, committed] XFAIL read_dir.f90 on FreeBSD
  2015-09-02 15:03       ` Steve Kargl
@ 2015-09-03 21:58         ` Janne Blomqvist
  0 siblings, 0 replies; 6+ messages in thread
From: Janne Blomqvist @ 2015-09-03 21:58 UTC (permalink / raw)
  To: Steve Kargl; +Cc: Jerry DeLisle, Fortran List, GCC Patches

[-- Attachment #1: Type: text/plain, Size: 2552 bytes --]

On Wed, Sep 2, 2015 at 6:03 PM, Steve Kargl
<sgk@troutmask.apl.washington.edu> wrote:
> On Wed, Sep 02, 2015 at 11:30:07AM +0300, Janne Blomqvist wrote:
>> On Wed, Sep 2, 2015 at 1:28 AM, Jerry DeLisle <jvdelisle@charter.net> wrote:
>> > On 09/01/2015 11:18 AM, Steve Kargl wrote:
>> >> On Tue, Sep 01, 2015 at 11:16:27AM -0700, Steve Kargl wrote:
>> >>>     open(unit=10, file='junko.dir',iostat=ios,action='read',access='stream')
>> >>>     if (ios.ne.0) call abort
>> >>>     read(10, iostat=ios) c
>> >>> -   if (ios.ne.21) call abort
>> >>> +   if (ios.ne.21) then
>> >>> +      close(10)
>> >>
>> >> I forgot to mention that 'close(10, status="delete')' does not
>> >> work on a directory.  Should it?
>> >>
>> >>> +      call system('rmdir junko.dir')
>> >>> +      call abort
>> >>> +   end if
>> >>> +   close(10)
>> >>>     call system('rmdir junko.dir')
>> >>
>> >
>> > Thanks for the touch up Steve.  I suspect other OS's will not work either.  I
>> > assumed close with Status="delete" would not work on a directory.
>>
>> That's because libgfortran uses unlink(2), which only works for files,
>> not directories. One could change that to use remove(3), which works
>> for both.
>
> I suspect people who create directories and then
> want to delete them will use SYSTEM or the
> standard conforming equivalent.

Probably. Anyway, it's no big deal to fix it and shouldn't have any
negative side effects, so I committed the attached patch as obvious.

testsuite:

2015-09-04  Janne Blomqvist  <jb@gcc.gnu.org>

    * gfortran.dg/read_dir.f90: Delete empty directory when closing
    rather than calling rmdir, cleanup if open fails.


libgfortran:

2015-09-04  Janne Blomqvist  <jb@gcc.gnu.org>

    * io/unix.h (delete_file): Remove prototype.
    * io/unix.c (delete_file): Remove function.
    * io/close.c (st_close): Replace delete_file and unlink with
    remove.
    * io/open.c (already_open): Replace unlink with remove.


>> Also, I suspect the reason why it fails on freebsd is that errno
>> EISDIR is not 21 there. Perhaps one should just check for ios /= 0?
>
> I checked.  FreeBSD's EISDIR is 21; howevr, ios == 0 in this
> case.  I haven't looked too deep.  FreeBSD is probably
> adhering to the unix philosophy of "everything is a file".

Hmm, Ok. Reading the POSIX spec for read()

http://pubs.opengroup.org/onlinepubs/9699919799/functions/read.html

it seems it's allowed, but not required for an implementation to
return data when reading from a directory fd. The portable would be to
use readdir().


-- 
Janne Blomqvist

[-- Attachment #2: unlink2remove.diff --]
[-- Type: text/plain, Size: 2756 bytes --]

diff --git a/gcc/testsuite/gfortran.dg/read_dir.f90 b/gcc/testsuite/gfortran.dg/read_dir.f90
index 0e28f9f..4009ed6 100644
--- a/gcc/testsuite/gfortran.dg/read_dir.f90
+++ b/gcc/testsuite/gfortran.dg/read_dir.f90
@@ -7,13 +7,14 @@ program bug
    integer ios
    call system('[ -d junko.dir ] || mkdir junko.dir')
    open(unit=10, file='junko.dir',iostat=ios,action='read',access='stream')
-   if (ios.ne.0) call abort
+   if (ios.ne.0) then
+      call system('rmdir junko.dir')
+      call abort
+   end if
    read(10, iostat=ios) c
    if (ios.ne.21) then 
-      close(10)
-      call system('rmdir junko.dir')
+      close(10, status='delete')
       call abort
    end if
-   close(10)
-   call system('rmdir junko.dir')
+   close(10, status='delete')
 end program bug
diff --git a/libgfortran/io/close.c b/libgfortran/io/close.c
index 38855ee..1e10993 100644
--- a/libgfortran/io/close.c
+++ b/libgfortran/io/close.c
@@ -80,7 +80,7 @@ st_close (st_parameter_close *clp)
 	  if (status == CLOSE_DELETE)
             {
 #if HAVE_UNLINK_OPEN_FILE
-	      delete_file (u);
+	      remove (u->filename);
 #else
 	      path = strdup (u->filename);
 #endif
@@ -92,7 +92,7 @@ st_close (st_parameter_close *clp)
 #if !HAVE_UNLINK_OPEN_FILE
       if (path != NULL)
 	{
-	  unlink (path);
+	  remove (path);
 	  free (path);
 	}
 #endif
diff --git a/libgfortran/io/open.c b/libgfortran/io/open.c
index 4654de2..630bca6 100644
--- a/libgfortran/io/open.c
+++ b/libgfortran/io/open.c
@@ -664,7 +664,7 @@ already_open (st_parameter_open *opp, gfc_unit * u, unit_flags * flags)
  
 #if !HAVE_UNLINK_OPEN_FILE
       if (u->filename && u->flags.status == STATUS_SCRATCH)
-	unlink (u->filename);
+	remove (u->filename);
 #endif
      free (u->filename);
      u->filename = NULL;
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c
index fd5f277..5385d8b 100644
--- a/libgfortran/io/unix.c
+++ b/libgfortran/io/unix.c
@@ -1716,16 +1716,6 @@ flush_all_units (void)
 }
 
 
-/* delete_file()-- Given a unit structure, delete the file associated
- * with the unit.  Returns nonzero if something went wrong. */
-
-int
-delete_file (gfc_unit * u)
-{
-  return unlink (u->filename);
-}
-
-
 /* file_exists()-- Returns nonzero if the current filename exists on
  * the system */
 
diff --git a/libgfortran/io/unix.h b/libgfortran/io/unix.h
index 78a41f7..d1aa75d 100644
--- a/libgfortran/io/unix.h
+++ b/libgfortran/io/unix.h
@@ -141,9 +141,6 @@ internal_proto(compare_file_filename);
 extern gfc_unit *find_file (const char *file, gfc_charlen_type file_len);
 internal_proto(find_file);
 
-extern int delete_file (gfc_unit *);
-internal_proto(delete_file);
-
 extern int file_exists (const char *file, gfc_charlen_type file_len);
 internal_proto(file_exists);
 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-09-03 21:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-01 18:16 [Fortran, committed] XFAIL read_dir.f90 on FreeBSD Steve Kargl
2015-09-01 18:18 ` Steve Kargl
2015-09-01 22:28   ` Jerry DeLisle
2015-09-02  8:30     ` Janne Blomqvist
2015-09-02 15:03       ` Steve Kargl
2015-09-03 21:58         ` Janne Blomqvist

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).