We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fb5c6c commit 4b74b58Copy full SHA for 4b74b58
tests/Filesystem/FilesystemTest.php
@@ -55,6 +55,10 @@ public function testLock()
55
#[Group('NonCoroutine')]
56
public function testFopenInCoroutine()
57
{
58
+ if (SWOOLE_VERSION_ID >= 60000) {
59
+ $this->markTestSkipped();
60
+ }
61
+
62
run(function () {
63
$max = 2;
64
$chan = new Channel($max);
@@ -89,6 +93,10 @@ public function testMakeDirection()
89
93
90
94
public function testPutLockInCoroutine()
91
95
96
97
98
99
92
100
101
$max = 3;
102
0 commit comments