- Fixed merge.t failing when run on an NFS share
This commit is contained in:
Owen Clarke 2012-03-05 08:26:08 +11:00
parent f898120829
commit f36f483d1e
2 changed files with 3 additions and 0 deletions

View file

@ -279,6 +279,7 @@
+ Fixed bug #937, which failed 'stat' calls on Solaris (thanks to Owen Clarke). + Fixed bug #937, which failed 'stat' calls on Solaris (thanks to Owen Clarke).
+ Fixed bug #938, which corrected compiler warnings on Solaris (thanks to Owen + Fixed bug #938, which corrected compiler warnings on Solaris (thanks to Owen
Clarke). Clarke).
+ Fixed bug #944, which caused a test to fail when it was run on an NFS share.
# Untracked Bugs, biggest first. # Untracked Bugs, biggest first.
+ Fixed bug that required the '%YAML' prologue in a YAML import. + Fixed bug that required the '%YAML' prologue in a YAML import.

View file

@ -203,6 +203,7 @@ if (open my $fh, 'local/undo.data') {
} }
} }
} }
close $fh;
} else { } else {
fail ("could not open local/undo.data"); fail ("could not open local/undo.data");
} }
@ -223,6 +224,7 @@ if (open my $fh, 'remote/undo.data') {
} }
} }
} }
close $fh;
} else { } else {
fail ("could not open remote/undo.data"); fail ("could not open remote/undo.data");
} }