Skip to content

Commit f5c5f7c

Browse files
committed
Fix file clash in bug54446.phpt tests
1 parent a29c793 commit f5c5f7c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ext/xsl/tests/bug54446_with_ini.phpt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (!extension_loaded('xsl')) die("skip Extension XSL is required\n");
88
<?php
99
include("prepare.inc");
1010

11-
$outputfile = __DIR__."/bug54446test.txt";
11+
$outputfile = __DIR__."/bug54446test_with_ini.txt";
1212
if (file_exists($outputfile)) {
1313
unlink($outputfile);
1414
}
@@ -74,21 +74,21 @@ if (file_exists($outputfile)) {
7474
--EXPECTF--
7575
Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on line %d
7676

77-
Warning: XSLTProcessor::transformToXml(): File write for %s/bug54446test.txt refused in %s on line %d
77+
Warning: XSLTProcessor::transformToXml(): File write for %s/bug54446test_with_ini.txt refused in %s on line %d
7878

7979
Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on line %d
8080

81-
Warning: XSLTProcessor::transformToXml(): xsltDocumentElem: write rights for %s/bug54446test.txt denied in %s on line %d
81+
Warning: XSLTProcessor::transformToXml(): xsltDocumentElem: write rights for %s/bug54446test_with_ini.txt denied in %s on line %d
8282
OK, no file created
8383
OK, file exists
8484

8585
Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on line %d
8686

87-
Warning: XSLTProcessor::transformToXml(): File write for %s/bug54446test.txt refused in %s on line %d
87+
Warning: XSLTProcessor::transformToXml(): File write for %s/bug54446test_with_ini.txt refused in %s on line %d
8888

8989
Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on line %d
9090

91-
Warning: XSLTProcessor::transformToXml(): xsltDocumentElem: write rights for %s/bug54446test.txt denied in %s on line %d
91+
Warning: XSLTProcessor::transformToXml(): xsltDocumentElem: write rights for %s/bug54446test_with_ini.txt denied in %s on line %d
9292
OK, no file created
9393
--CREDITS--
9494
Christian Stocker, chregu@php.net

0 commit comments

Comments
 (0)