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:
@@ -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);
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
bool(false)
|
||||
bool(false)
|
||||
NULL
|
||||
string(4) "link"
|
||||
bool(true)
|
||||
bool(true)
|
||||
|
||||
Referência em uma Nova Issue
Bloquear um usuário