fix shared test name

This test was imported WITHOUT hard-coded output. Meaning it was compared to zend. It so happened that I had cleaned my repo after any runs of ##TestExt## so the file they both created (and sometimes didn't clean up) didn't exist. So that is the output I recorded.

@mwilliams do you think you intended for the file to exist? It wasn't in the repo.

With this diff I'm using a unique filename so it doesn't matter if ##TestExt## hasn't cleaned up perfectly.
Esse commit está contido em:
Paul Tarjan
2013-04-26 03:45:15 -07:00
commit de Sara Golemon
commit 90e7a30404
2 arquivos alterados com 9 adições e 4 exclusões
+6 -1
Ver Arquivo
@@ -1,3 +1,8 @@
<?php
var_dump(filetype('test/test_ext_file2.tmp'));var_dump(is_link('test/test_ext_file2.tmp'));$a = lstat('test/test_ext_file2.tmp');var_dump($a['mtime']);
$file = __DIR__."/../../sample_dir/symlink";
var_dump(filetype($file));
var_dump(is_link($file));
$a = lstat($file);
var_dump($a['mtime'] > 1234567890);
+3 -3
Ver Arquivo
@@ -1,3 +1,3 @@
bool(false)
bool(false)
NULL
string(4) "link"
bool(true)
bool(true)