1
0
mirror of https://github.com/php/php-src.git synced 2026-04-16 04:21:18 +02:00

- useless skipif

This commit is contained in:
Pierre Joye
2011-09-06 15:49:28 +00:00
parent 4e967d1bb1
commit 3d08ebd419

View File

@@ -1,17 +1,5 @@
--TEST--
Test sha1_file() function with ASCII output and raw binary output. Based on ext/standard/tests/strings/md5_file.phpt
--SKIPIF--
<?php
$path = dirname(__FILE__);
$data_file = "$path/EmptyFile.txt";
$data_file1 = "$path/DataFile.txt";
if !(($fp = fopen($data_file, 'w')) || ($fp1 = fopen($data_file1, 'w')) {
echo "File could not be created ,hence exiting from testcase due to pre-requisite failure\n";
}
fclose( $fp );
fclose( $fp1 );
--FILE--
<?php