10000 Use GitHub actions for continuous integration (CI) by SimonFrings · Pull Request #254 · reactphp/socket · GitHub
[go: up one dir, main page]

Skip to content

Use GitHub actions for continuous integration (CI) #254

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 5, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set Xdebug's stack limit to 256 for legacy PHP
  • Loading branch information
SimonFrings committed Mar 29, 2021
commit 7ec5fbd8ff6f11a3bda8464a9580e0f3d0206ddb
3 changes: 3 additions & 0 deletions tests/FunctionalConnectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ public function testConnectTwiceWithoutHappyEyeBallsOnlySendsSingleDnsQueryDueTo
*/
public function connectionToRemoteTCP4n6ServerShouldResultInOurIP()
{
// max_nesting_level was set to 100 for PHP Versions < 5.4 which resulted in failing test for legacy PHP
ini_set('xdebug.max_nesting_level', 256);

$loop = Factory::create();

$connector = new Connector($loop, array('happy_eyeballs' => true));
Expand Down
0