summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/tests/path/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/tests/path/main.rs')
-rw-r--r--vendor/rustix/tests/path/main.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/rustix/tests/path/main.rs b/vendor/rustix/tests/path/main.rs
new file mode 100644
index 000000000..3215c7e5e
--- /dev/null
+++ b/vendor/rustix/tests/path/main.rs
@@ -0,0 +1,13 @@
+//! Tests for [`rustix::path`].
+
+#![cfg(any(feature = "fs", feature = "net"))]
+#![cfg(not(windows))]
+#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
+#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
+#![cfg_attr(core_c_str, feature(core_c_str))]
+#![cfg_attr(alloc_c_string, feature(alloc_c_string))]
+
+#[cfg(not(feature = "rustc-dep-of-std"))]
+mod arg;
+#[cfg(feature = "itoa")]
+mod dec_int;