Re: [PHP-DEV] travis-CI failures

2013-08-22 Thread Nikita Popov
On Sun, Aug 11, 2013 at 5:49 AM, Stas Malyshev smalys...@sugarcrm.comwrote: Hi! I've looked at travis-CI results for PHP (e.g. https://travis-ci.org/php/php-src/) and I am seeing that there are two extensions that produce fails that break the build: I just fixed the last pgsql failure and

Re: [PHP-DEV] travis-CI failures

2013-08-11 Thread Stas Malyshev
Hi! I think I know what the problem is. pgsql has this setting: pgsql.ignore_notice And the tests seem to rely on it being 0, however one of the tests does not set it at all and another misspells it as pgsql.ignore_notices. I'll fix it and see what happens. -- Stanislav Malyshev, Software

Re: [PHP-DEV] travis-CI failures

2013-08-11 Thread Stas Malyshev
Hi! Hi! I think I know what the problem is. pgsql has this setting: pgsql.ignore_notice And the tests seem to rely on it being 0, however one of the tests does not set it at all and another misspells it as pgsql.ignore_notices. I'll fix it and see what happens. Unfortunately, this

[PHP-DEV] travis-CI failures

2013-08-10 Thread Stas Malyshev
Hi! I've looked at travis-CI results for PHP (e.g. https://travis-ci.org/php/php-src/) and I am seeing that there are two extensions that produce fails that break the build: Bug #39858 (Lost connection to MySQL server during query by a repeated call stored proced)

Re: [PHP-DEV] travis-CI failures

2013-08-10 Thread Yasuo Ohgaki
Hi Stas, On Sun, Aug 11, 2013 at 12:49 PM, Stas Malyshev smalys...@sugarcrm.comwrote: PostgreSQL notice function [ext/pgsql/tests/09notice.phpt] Bug #32223 (weird behaviour of pg_last_notice) [ext/pgsql/tests/80_bug32223.phpt] Bug #32223 (weird behaviour of pg_last_notice using define)

Re: [PHP-DEV] travis-CI failures

2013-08-10 Thread Yasuo Ohgaki
Hi Stas, On Sun, Aug 11, 2013 at 1:06 PM, Yasuo Ohgaki yohg...@ohgaki.net wrote: On Sun, Aug 11, 2013 at 12:49 PM, Stas Malyshev smalys...@sugarcrm.comwrote: PostgreSQL notice function [ext/pgsql/tests/09notice.phpt] Bug #32223 (weird behaviour of pg_last_notice)

Re: [PHP-DEV] travis-CI failures

2013-08-10 Thread Stas Malyshev
Hi! I have PostgreSQL 8.1 though 9.3 installed on my dev system and cannot reproduce with my PostgreSQLs and PHP 5.5 branch. It happens on master, not on 5.5. Here's description of Travis CI: http://about.travis-ci.org/docs/user/ci-environment/

Re: [PHP-DEV] travis-CI failures

2013-08-10 Thread Yasuo Ohgaki
Hi Stas, On Sun, Aug 11, 2013 at 1:43 PM, Stas Malyshev smalys...@sugarcrm.comwrote: I have PostgreSQL 8.1 though 9.3 installed on my dev system and cannot reproduce with my PostgreSQLs and PHP 5.5 branch. It happens on master, not on 5.5. Here's description of Travis CI: pgsql module's

Re: [PHP-DEV] travis-CI failures

2013-08-10 Thread Yasuo Ohgaki
Hi Stas, On Sun, Aug 11, 2013 at 2:18 PM, Yasuo Ohgaki yohg...@ohgaki.net wrote: http://about.travis-ci.org/docs/user/ci-environment/ http://about.travis-ci.org/docs/user/database-setup/ I guess Trivis-CI has some settings. I think it can be ignored, but if there is postgresql.conf

Re: [PHP-DEV] travis-CI failures

2013-08-10 Thread Yasuo Ohgaki
On Sun, Aug 11, 2013 at 2:23 PM, Yasuo Ohgaki yohg...@ohgaki.net wrote: Sorry I confused by the test file name. The test works under 9.x also. I'll update test description later so that I would be confused again. -- Yasuo Ohgaki yohg...@ohgaki.net

Re: [PHP-DEV] travis-CI failures

2013-08-10 Thread Stas Malyshev
Hi! Is the diff or log files for test scripts available? I cannot fix problem that cannot be verified. Sure, right here: https://travis-ci.org/php/php-src Just scroll down to the end, you'll see the failed scripts. Then look them up in the log, and you'll see the diffs. -- Stanislav