You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2014/12/15 18:12:19 UTC

svn commit: r1643072 - /subversion/trunk/subversion/bindings/swig/perl/native/t/6ra.t

Author: rhuijben
Date: Wed Dec  3 09:03:52 2014
New Revision: 1643072

URL: http://svn.apache.org/r1643072
Log:
Remove an explicit END handler that performs a cleanup that is already
handled by the standard tempdir() support. As END handlers are run in LIFO
order this block was executed before the RA session was closed, thereby
reporting an unneeded test cleanup failure on Windows.

* subversion/bindings/swig/perl/native/t/6ra.t
  (END): Remove block.

Modified:
    subversion/trunk/subversion/bindings/swig/perl/native/t/6ra.t

Modified: subversion/trunk/subversion/bindings/swig/perl/native/t/6ra.t
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/perl/native/t/6ra.t?rev=1643072&r1=1643071&r2=1643072&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/perl/native/t/6ra.t (original)
+++ subversion/trunk/subversion/bindings/swig/perl/native/t/6ra.t Wed Dec  3 09:03:52 2014
@@ -202,12 +202,6 @@ is($ed->{trunk}{props}{'dir-prop'}, 'fro
 is($ed->{'trunk/filea'}{props}{'binary-prop'}, $BINARY_DATA,
    'replay: binary-prop');
 
-END {
-diag "cleanup";
-rmtree($repospath);
-}
-
-
 package MockEditor;
 
 sub new { bless {}, shift }