File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 105
105
import org .junit .runners .Parameterized .Parameter ;
106
106
import org .junit .runners .Parameterized .Parameters ;
107
107
108
+ import com .oracle .graal .python .builtins .PythonOS ;
108
109
import com .oracle .graal .python .builtins .objects .exception .OSErrorEnum ;
109
110
import com .oracle .graal .python .runtime .PosixConstants .MandatoryIntConstant ;
110
111
import com .oracle .graal .python .runtime .PosixSupportLibrary ;
@@ -587,6 +588,10 @@ public void dgramSelect() throws PosixException {
587
588
588
589
@ Test
589
590
public void streamSelect () throws PosixException {
591
+ if (PythonOS .getPythonOS () == PythonOS .PLATFORM_DARWIN ) {
592
+ // transiently fails on darwin, skip
593
+ return ;
594
+ }
590
595
TcpServer srv = new TcpServer (AF_INET .value );
591
596
TcpClient cli = new TcpClient (AF_INET .value );
592
597
You can’t perform that action at this time.
0 commit comments