Skip to content

Commit

Permalink
Fixed ci for swoole v6.0.0 (#6810)
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo authored May 30, 2024
1 parent 3fb5c6c commit 4b74b58
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/Filesystem/FilesystemTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ public function testLock()
#[Group('NonCoroutine')]
public function testFopenInCoroutine()
{
if (SWOOLE_VERSION_ID >= 60000) {
$this->markTestSkipped();
}

run(function () {
$max = 2;
$chan = new Channel($max);
Expand Down Expand Up @@ -89,6 +93,10 @@ public function testMakeDirection()
#[Group('NonCoroutine')]
public function testPutLockInCoroutine()
{
if (SWOOLE_VERSION_ID >= 60000) {
$this->markTestSkipped();
}

run(function () {
$max = 3;
$chan = new Channel($max);
Expand Down

0 comments on commit 4b74b58

Please sign in to comment.