<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/sapi/cli/tests, branch php-7.3.0beta3</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Merge branch 'PHP-7.2'</title>
<updated>2018-05-18T11:41:14+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2018-05-18T11:41:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a551d759427adfe9ca1876654a0c0e55c051cfa6'/>
<id>a551d759427adfe9ca1876654a0c0e55c051cfa6</id>
<content type='text'>
* PHP-7.2:
  Fix cli server test fails after recent AppVeyor image update
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.2:
  Fix cli server test fails after recent AppVeyor image update
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.1' into PHP-7.2</title>
<updated>2018-05-18T11:40:42+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2018-05-18T11:40:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a8422edced04550b970476a070ed2e5406f0edb9'/>
<id>a8422edced04550b970476a070ed2e5406f0edb9</id>
<content type='text'>
* PHP-7.1:
  Fix cli server test fails after recent AppVeyor image update
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.1:
  Fix cli server test fails after recent AppVeyor image update
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix cli server test fails after recent AppVeyor image update</title>
<updated>2018-05-18T11:38:53+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2018-05-18T11:38:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ee0ca6470dfcd97d84d7d4d24aface665f0022aa'/>
<id>ee0ca6470dfcd97d84d7d4d24aface665f0022aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use EXPECT instead of EXPECTF when possible</title>
<updated>2018-02-20T20:53:48+00:00</updated>
<author>
<name>Gabriel Caruso</name>
<email>carusogabriel34@gmail.com</email>
</author>
<published>2018-02-19T08:59:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ded3d984c6133b1f508ed84e96df3316e207c99b'/>
<id>ded3d984c6133b1f508ed84e96df3316e207c99b</id>
<content type='text'>
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use bool instead of boolean while throwing a type error</title>
<updated>2018-02-04T22:09:40+00:00</updated>
<author>
<name>Gabriel Caruso</name>
<email>carusogabriel34@gmail.com</email>
</author>
<published>2018-02-04T18:42:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fef879a2d63899ed25f39b4581c16682afdd0a8f'/>
<id>fef879a2d63899ed25f39b4581c16682afdd0a8f</id>
<content type='text'>
PHP requires boolean typehints to be written "bool" and disallows
"boolean" as an alias. This changes the error messages to match
the actual type name and avoids confusing messages like "must be
of type boolean, boolean given".

This a followup to ce1d69a1f6dcf15d43029301059c25e5bc09a577, which
implements the same change for integer-&gt;int.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PHP requires boolean typehints to be written "bool" and disallows
"boolean" as an alias. This changes the error messages to match
the actual type name and avoids confusing messages like "must be
of type boolean, boolean given".

This a followup to ce1d69a1f6dcf15d43029301059c25e5bc09a577, which
implements the same change for integer-&gt;int.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use int instead of integer in type errors</title>
<updated>2018-02-04T18:08:23+00:00</updated>
<author>
<name>Gabriel Caruso</name>
<email>carusogabriel34@gmail.com</email>
</author>
<published>2018-02-04T13:33:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ce1d69a1f6dcf15d43029301059c25e5bc09a577'/>
<id>ce1d69a1f6dcf15d43029301059c25e5bc09a577</id>
<content type='text'>
PHP requires integer typehints to be written "int" and does not
allow "integer" as an alias. This changes type error messages to
match the actual type name and avoids confusing messages like
"must be of the type integer, integer given".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PHP requires integer typehints to be written "int" and does not
allow "integer" as an alias. This changes type error messages to
match the actual type name and avoids confusing messages like
"must be of the type integer, integer given".
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove superfluous SKIPIF sections in more tests</title>
<updated>2018-02-04T15:57:08+00:00</updated>
<author>
<name>Gabriel Caruso</name>
<email>carusogabriel34@gmail.com</email>
</author>
<published>2018-02-03T14:24:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=84488d921b5e01729be4f70f8eba8d52ca0209d2'/>
<id>84488d921b5e01729be4f70f8eba8d52ca0209d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added PCRE_JIT_SUPPORT flag</title>
<updated>2017-11-14T03:02:16+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2017-11-14T02:50:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=266f19babbd26a58d20d40f2af25482f4a1d0d90'/>
<id>266f19babbd26a58d20d40f2af25482f4a1d0d90</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Patch core for PCRE2 support</title>
<updated>2017-11-13T18:37:38+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2017-10-12T10:48:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a5bc5aed71f7a15f14f33bb31b8e17bf5f327e2d'/>
<id>a5bc5aed71f7a15f14f33bb31b8e17bf5f327e2d</id>
<content type='text'>
RFC https://wiki.php.net/rfc/pcre2-migration
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RFC https://wiki.php.net/rfc/pcre2-migration
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.2'</title>
<updated>2017-09-18T10:07:12+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2017-09-18T10:07:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=b81659d34f8f19ba579f7e32d8b601293df16102'/>
<id>b81659d34f8f19ba579f7e32d8b601293df16102</id>
<content type='text'>
* PHP-7.2:
  Fix the version check causing the test fail
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.2:
  Fix the version check causing the test fail
</pre>
</div>
</content>
</entry>
</feed>
