diff options
Diffstat (limited to 'ext/B/t/xref.t')
-rw-r--r-- | ext/B/t/xref.t | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/B/t/xref.t b/ext/B/t/xref.t index 8268e3f898..8b143556e3 100644 --- a/ext/B/t/xref.t +++ b/ext/B/t/xref.t @@ -93,6 +93,11 @@ is( '1001', 'glob FOO used in subroutine foo' ); +END { + close XREF; + 1 while unlink $file; +} + # End of tests. # Now some stuff to feed B::Xref @@ -100,3 +105,4 @@ is( package Testing::Xref; sub foo { print FOO %::xreftable; } sub bar { print FOO foo; } + |