We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60c7003 commit 02149c1Copy full SHA for 02149c1
graalpython/com.oracle.graal.python.test/src/tests/test_fcntl.py
@@ -113,6 +113,8 @@ def test_flock_s_and_s(self):
113
os.close(file)
114
115
116
+@unittest.skipUnless(sys.platform == 'linux', "Linux only test")
117
+@unittest.skipUnless(__graalpython__.posix_module_backend() != 'java', "No ioctl in emulated backend")
118
class IoctlTests(unittest.TestCase):
119
# Taken from CPython test_ioctl.py which unfortunately skips the whole file when not in a terminal
120
def test_ioctl_signed_unsigned_code_param(self):
0 commit comments