summaryrefslogtreecommitdiff
path: root/test/sys
diff options
context:
space:
mode:
authorBryant Mairs <bryant@mai.rs>2017-07-11 09:55:47 -0700
committerMarcin Mielniczuk <marmistrz.dev@zoho.eu>2017-07-25 09:09:52 +0200
commita5b01c007586f3cbda72cd5c17c36e02ff72122f (patch)
tree8daacfcc2564f7d2c449b24024df7d2cd1f5ac9d /test/sys
parent1b9a779333df43e33c3c77f286aed64682001ffe (diff)
downloadnix-a5b01c007586f3cbda72cd5c17c36e02ff72122f.zip
Add a "bad none" variant to the ioctl macro
Diffstat (limited to 'test/sys')
-rw-r--r--test/sys/test_ioctl.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sys/test_ioctl.rs b/test/sys/test_ioctl.rs
index 8a5b8a12..c0ae078a 100644
--- a/test/sys/test_ioctl.rs
+++ b/test/sys/test_ioctl.rs
@@ -2,6 +2,7 @@
// Simple tests to ensure macro generated fns compile
ioctl!(bad do_bad with 0x1234);
+ioctl!(bad none do_bad_none with 0x1234);
ioctl!(none do_none with 0, 0);
ioctl!(read read_test with 0, 0; u32);
ioctl!(write write_test with 0, 0; u64);