diff options
| author | Anatol Belski <ab@php.net> | 2015-07-01 20:06:48 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2015-07-02 14:23:05 +0200 |
| commit | cefca3569296aaedd56f9ca32f95474877bfe6e1 (patch) | |
| tree | 7d7ca2010e1329343280457f4ba512870af7aa1b /ext | |
| parent | 4fe8d629d0f557e19733857736f692d73259b28f (diff) | |
| download | php-git-cefca3569296aaedd56f9ca32f95474877bfe6e1.tar.gz | |
use proper place to cleanup
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/standard/tests/streams/proc_open_bug69900.phpt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/standard/tests/streams/proc_open_bug69900.phpt b/ext/standard/tests/streams/proc_open_bug69900.phpt index 7e7209a783..b3523294a7 100644 --- a/ext/standard/tests/streams/proc_open_bug69900.phpt +++ b/ext/standard/tests/streams/proc_open_bug69900.phpt @@ -41,9 +41,13 @@ fclose($pipes[1]); proc_close($process); -@unlink($fl); ?> ===DONE=== +--CLEAN-- +<?php +$fl = dirname(__FILE__) . DIRECTORY_SEPARATOR . "test69900.php"; +@unlink($fl); +?> --EXPECTF-- hello0 fgets() took %d%sms |
