diff options
author | Hannes Magnusson <bjori@php.net> | 2011-09-07 12:05:19 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2011-09-07 12:05:19 +0000 |
commit | 04044dd07eb0f204639c457dc77d6cfd49f2572c (patch) | |
tree | 6e1b2d0843cf9067c775c5fb68784566a76badc3 /ext/zip | |
parent | a2252e527f10730bdd0f32170ebee6c6169ba729 (diff) | |
download | php-git-04044dd07eb0f204639c457dc77d6cfd49f2572c.tar.gz |
Fix cleanup routines
Diffstat (limited to 'ext/zip')
-rw-r--r-- | ext/zip/tests/bug53885.phpt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/zip/tests/bug53885.phpt b/ext/zip/tests/bug53885.phpt index d59bf8f034..1b3fcb9e4b 100644 --- a/ext/zip/tests/bug53885.phpt +++ b/ext/zip/tests/bug53885.phpt @@ -15,5 +15,10 @@ $nx->locateName("a",ZIPARCHIVE::FL_UNCHANGED); $nx->statName("a",ZIPARCHIVE::FL_UNCHANGED); ?> ==DONE== +--CLEAN-- +<?php +$fname = dirname(__FILE__)."/test53885.zip"; +unlink($fname); +?> --EXPECTF-- ==DONE== |