Commit Graph

23396 Commits

Author SHA1 Message Date
Antony Dovgal
40b04059f9 fix test 2008-07-23 10:26:39 +00:00
Antony Dovgal
1c86fb2739 fix tests names 2008-07-23 10:22:58 +00:00
Antony Dovgal
523f696954 fix test 2008-07-23 09:49:11 +00:00
Antony Dovgal
624122daff sync test with other branches 2008-07-23 09:29:09 +00:00
Hartmut Holzgraefe
d11e0df7ad MFB + Unicode:
added support for object ids in pg_lo_create() and pg_lo_import()
where available (based on code provided by Tatsuo Ishii)
2008-07-23 09:27:01 +00:00
Arnaud Le Blanc
0225470dc5 Fix tests: need simplexml 2008-07-23 09:12:50 +00:00
Antony Dovgal
3b07744b28 add PHP_STREAM_FLAG_FCLOSE to zip streams 2008-07-23 09:09:02 +00:00
Antony Dovgal
179c59e8f7 add PHP_STREAM_FLAG_FCLOSE, bz2 streams can be closed with fclose() 2008-07-23 08:55:59 +00:00
Arnaud Le Blanc
4e641ae41f Fix tests: soap tests in schema/ needs the xml extension 2008-07-23 08:55:39 +00:00
Arnaud Le Blanc
4102806c0c Fix test: use canonical name to avoid problems with domain search path 2008-07-23 08:26:26 +00:00
Marcus Boerger
abe24e95fa - MFH [DOC] Add FilesystemIterator::SKIP_DOTS (flag to skip '.' and '..' in iteration) 2008-07-23 06:12:44 +00:00
Marcus Boerger
eb6333be1c - Add new classes 2008-07-23 06:07:55 +00:00
Andrey Hristov
9f0b69086c Two less failing tests, one of which was definitely a leak in mysqli with mysqlnd
and pconn. ext/mysql is being fixed with a better fix for similar leak.
2008-07-22 23:43:14 +00:00
Marcus Boerger
32f51050bc - Add MultipleIterator (Arnaud, Marcus) 2008-07-22 22:54:15 +00:00
Stanislav Malyshev
0403ce45c6 MFB: constructors fixes and cleanup 2008-07-22 22:11:21 +00:00
Scott MacVicar
955466e479 MFB: Fix windows build error. 2008-07-22 21:56:25 +00:00
Ulf Wendel
beae9faca0 Fixing some tests to expect unicode instead of (binary) strings. 2008-07-22 18:33:28 +00:00
Andrey Hristov
55773e7853 Fix a leak with pconn and mysqlnd 2008-07-22 17:40:43 +00:00
Jani Taskinen
f7560881f6 MFB:- Fixed bug #38680 (Added missing handling of basic types in json_decode)
# This was claimed to be in HEAD but wasn't..some commit reverted it or
# someone didn't check for real..
2008-07-22 17:06:00 +00:00
Scott MacVicar
9f26bea98f Add test for escapeshellcmd and restore previous behaviour with stripping % on Windows. 2008-07-22 16:18:37 +00:00
Andrey Hristov
ea85e2924f More debugging info 2008-07-22 16:05:28 +00:00
Jani Taskinen
c11ebb4076 MFB: sync 2008-07-22 15:31:00 +00:00
Jani Taskinen
24bddd5d58 ws + cs + sync with PHP_5_3 2008-07-22 15:30:33 +00:00
Jani Taskinen
a348a5daa4 - Add missing tests (thanks for being so fucking lazy Ilia!) 2008-07-22 14:14:31 +00:00
Felipe Pena
f76da1b96c - Fixed bug #44246 (closedir() accepts a file resource opened by fopen()) 2008-07-22 14:06:17 +00:00
Rob Richards
7e8013c9cc - Visibility (bug #45557) 2008-07-22 10:29:14 +00:00
Pierre Joye
d3b351114a - fix build 2008-07-22 10:04:53 +00:00
Dmitry Stogov
ed72680e09 Fixed test 2008-07-22 07:13:18 +00:00
Pierre Joye
8c27aa68e5 - Segfault when an exception is thrown on persistent connections 2008-07-22 06:48:09 +00:00
Felipe Pena
7ef0126412 - Added arginfo 2008-07-22 01:46:43 +00:00
Scott MacVicar
69ee229b97 Fix integer oveflow in strrpos() 2008-07-22 01:05:55 +00:00
Lars Strojny
817546a99f Fixing tests broken by the introduction E_USER_DEPRECATED 2008-07-21 22:06:01 +00:00
Pierre Joye
b0a4aa7e3b - #41996, Problem accessing Oracle ROWID (Martin Jansen) 2008-07-21 17:17:58 +00:00
Jani Taskinen
2e4519b19c - Visibility (bug #45564) 2008-07-21 16:22:29 +00:00
Rob Richards
c2eb3ea158 Sync with 5_3 changes 2008-07-21 16:12:28 +00:00
Felipe Pena
2d1fbe1328 - Fixed tests 2008-07-21 14:31:40 +00:00
Felipe Pena
6842e84b34 - MFB: New parameter parsing API 2008-07-21 14:29:46 +00:00
Johannes Schlüter
ae1cd8e253 - Add mysqlnd support for PDO_mysql, fixes at least bug#41997,#42499,
pecl#12794, pecl#12401

# Running the tests:
# (Note: Doesn't work currnetly on HEAD, see:
#  http://news.php.net/php.qa/64378)
#
#  PDO_MYSQL_TEST_DSN  - DSN
#    For example: mysql:dbname=test;host=localhost;port=3306
#
#  PDO_MYSQL_TEST_HOST    - database host
#  PDO_MYSQL_TEST_DB      - database (schema) name
#  PDO_MYSQL_TEST_SOCKET  - database server socket
#  PDO_MYSQL_TEST_ENGINE  - storage engine to use
#  PDO_MYSQL_TEST_USER    - database user
#  PDO_MYSQL_TEST_PASS    - database user password
#  PDO_MYSQL_TEST_CHARSET - database charset
#
#  NOTE: if any of PDO_MYSQL_TEST_[HOST|DB|SOCKET|ENGINE|CHARSET] is
#  part of PDO_MYSQL_TEST_DSN, the values must match. That is, for example,
#  for PDO_MYSQL_TEST_DSN = mysql:dbname=test you MUST set PDO_MYSQL_TEST_DB=test.
2008-07-21 13:05:51 +00:00
Andrey Hristov
0df974b7a5 MFB :
Fix for bug#45179 --with-mysql-sock fails to compile & work
Now --with-mysql-sock controls all mysql extensions. If provided it will be
the default value as it was set in php.ini . php.ini will override it for
ext/mysql and ext/mysqli but not for pdo_mysql
2008-07-21 13:01:41 +00:00
Jani Taskinen
78bab4d9b3 - forgot to commit to HEAD 2008-07-21 13:00:27 +00:00
Felipe Pena
39387127b9 - Removed unicode_semantics() 2008-07-21 11:32:49 +00:00
Jani Taskinen
f25ac22c58 MFB: The rest of the fix too for previous commit 2008-07-21 11:27:45 +00:00
Kalle Sommer Nielsen
348cec30d0 Forgot to fix title 2008-07-21 11:09:23 +00:00
Jani Taskinen
f6404d756c MFB:- Fixed bug #40079 (php_get_current_user() not thread safe). 2008-07-21 10:16:32 +00:00
Jani Taskinen
3ea12e99c0 ws 2008-07-21 10:10:34 +00:00
Steph Fox
d5970d85be MFB Make compiler/architecture info potentially cross-platform 2008-07-21 09:58:28 +00:00
Hannes Magnusson
a1420c3e90 Fix proto 2008-07-21 09:36:41 +00:00
Jani Taskinen
79e592831f ws + style fix 2008-07-21 08:38:39 +00:00
Derick Rethans
5738a0fcee - Fixed test. 2008-07-21 07:27:16 +00:00
Antony Dovgal
1084d24e9d this should be "=", not "==" 2008-07-21 07:27:00 +00:00