Browse Source

- Fixed tests not passing under windows because of the directory separator

difference (thanks Eyal Teutsch for reporting)
pull/12/head
Patrick Allaert 16 years ago
parent
commit
817776d1b9
  1. 2
      ext/iconv/tests/iconv_stream_filter_delimiter.phpt
  2. 4
      ext/mbstring/tests/bug43301.phpt
  3. 2
      ext/pdo_pgsql/tests/bug36727.phpt
  4. 4
      ext/sqlite3/tests/sqlite3_15_open_error.phpt
  5. 4
      ext/standard/tests/file/copy_variation12.phpt
  6. 2
      tests/basic/bug51709_1.phpt
  7. 2
      tests/basic/bug51709_2.phpt

2
ext/iconv/tests/iconv_stream_filter_delimiter.phpt

@ -44,7 +44,7 @@ string(20) "a4b3a4f3a4cba4c1a4cf"
string(10) "69636f6e76"
string(2) "0a"
Warning: stream_filter_append(): unable to create or locate filter "convert.iconv.ISO-2022-JP\0EUC-JP" in %s/iconv_stream_filter_delimiter.php on line %d
Warning: stream_filter_append(): unable to create or locate filter "convert.iconv.ISO-2022-JP\0EUC-JP" in %siconv_stream_filter_delimiter.php on line %d
string(20) "1b244224332473244b24"
string(10) "41244f1b28"
string(2) "42"

4
ext/mbstring/tests/bug43301.phpt

@ -15,7 +15,7 @@ echo mb_ereg_replace($ptr,'$1',$txt,'e');
?>
--EXPECTF--
Parse error: syntax error, unexpected T_LNUMBER, expecting T_VARIABLE or '$' in %s/bug43301.php(%d) : mbregex replace on line 1
Parse error: syntax error, unexpected T_LNUMBER, expecting T_VARIABLE or '$' in %sbug43301.php(%d) : mbregex replace on line 1
Fatal error: mb_ereg_replace(): Failed evaluating code:
$1 in %s/bug43301.php on line %d
$1 in %sbug43301.php on line %d

2
ext/pdo_pgsql/tests/bug36727.phpt

@ -19,6 +19,6 @@ var_dump($stmt->bindValue(':test', 1, PDO::PARAM_INT));
echo "Done\n";
?>
--EXPECTF--
Warning: PDOStatement::bindValue(): SQLSTATE[HY093]: Invalid parameter number: :test in %s/bug36727.php on line %d
Warning: PDOStatement::bindValue(): SQLSTATE[HY093]: Invalid parameter number: :test in %sbug36727.php on line %d
bool(false)
Done

4
ext/sqlite3/tests/sqlite3_15_open_error.phpt

@ -16,8 +16,8 @@ echo "Done\n";
unlink($unreadable);
?>
--EXPECTF--
exception 'Exception' with message 'Unable to open database: %s' in %s/sqlite3_15_open_error.php:%d
exception 'Exception' with message 'Unable to open database: %s' in %ssqlite3_15_open_error.php:%d
Stack trace:
#0 %s/sqlite3_15_open_error.php(%d): SQLite3->__construct('%s')
#0 %ssqlite3_15_open_error.php(%d): SQLite3->__construct('%s')
#1 {main}
Done

4
ext/standard/tests/file/copy_variation12.phpt

@ -41,11 +41,11 @@ rmdir(dirname(__FILE__)."/copy_variation12");
--EXPECTF--
*** Test copy() function: Trying to create a copy of an existing dir ***
Warning: copy(): The first argument to copy() function cannot be a directory in %s/copy_variation12.php on line %d
Warning: copy(): The first argument to copy() function cannot be a directory in %scopy_variation12.php on line %d
bool(false)
bool(false)
int(%d)
Warning: filesize(): stat failed for %s/copy_copy_variation12 in %s/copy_variation12.php on line %d
Warning: filesize(): stat failed for %scopy_copy_variation12 in %scopy_variation12.php on line %d
bool(false)
*** Done ***

2
tests/basic/bug51709_1.phpt

@ -13,4 +13,4 @@ class foo {
===DONE===
<?php exit(0); ?>
--EXPECTF--
Parse error: syntax error, unexpected T_FOR, expecting T_STRING in %s/bug51709_1.php on line %d
Parse error: syntax error, unexpected T_FOR, expecting T_STRING in %sbug51709_1.php on line %d

2
tests/basic/bug51709_2.phpt

@ -13,4 +13,4 @@ class foo {
===DONE===
<?php exit(0); ?>
--EXPECTF--
Parse error: syntax error, unexpected T_GOTO, expecting T_STRING in %s/bug51709_2.php on line %d
Parse error: syntax error, unexpected T_GOTO, expecting T_STRING in %sbug51709_2.php on line %d
Loading…
Cancel
Save