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 973a718 commit 2a30ef6Copy full SHA for 2a30ef6
test/other/test_ioctl.c
@@ -14,7 +14,7 @@
14
int main() {
15
// CLOEXEC is not supported
16
assert(ioctl(STDOUT_FILENO, FIOCLEX, NULL) == -1);
17
- assert(errno = EINVAL);
+ assert(errno == EINVAL);
18
19
puts("success");
20
return 0;
test/test_other.py
@@ -8971,7 +8971,7 @@ def test_ioctl_window_size(self):
8971
self.do_other_test('test_ioctl_window_size.cpp')
8972
8973
@also_with_wasmfs
8974
- def test_sys_ioctl(self):
+ def test_ioctl(self):
8975
# ioctl requires filesystem
8976
self.do_other_test('test_ioctl.c', emcc_args=['-sFORCE_FILESYSTEM'])
8977
0 commit comments