summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/tests/termios/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/tests/termios/main.rs')
-rw-r--r--vendor/rustix/tests/termios/main.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/rustix/tests/termios/main.rs b/vendor/rustix/tests/termios/main.rs
new file mode 100644
index 000000000..d9ad9338b
--- /dev/null
+++ b/vendor/rustix/tests/termios/main.rs
@@ -0,0 +1,10 @@
+//! Tests for [`rustix::termios`].
+
+#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
+#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
+#![cfg(feature = "termios")]
+
+#[cfg(not(windows))]
+mod isatty;
+#[cfg(not(windows))]
+mod ttyname;