Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(op, fs): ✨ Intergated statx into monoio #268

Merged
merged 17 commits into from
Jul 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(tests): 🐛 disable tests on windows
Lzzzzzt committed Jun 9, 2024
commit 49282ddbf90ae098b777670eb9e4ae75806b090f
6 changes: 2 additions & 4 deletions monoio/tests/fs_metadata.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#[allow(unused)]
#![cfg(unix)]

use std::io::Write;

#[monoio::test_all]
#[cfg(unix)]
async fn basic_file_metadata() {
let mut file = tempfile::NamedTempFile::new().unwrap();

@@ -36,7 +36,6 @@ async fn basic_file_metadata() {
}

#[monoio::test_all]
#[cfg(unix)]
async fn dir_metadata() {
let dir = tempfile::tempdir().unwrap();

@@ -58,7 +57,6 @@ async fn dir_metadata() {
}

#[monoio::test_all]
#[cfg(unix)]
async fn symlink_metadata() {
let dir = tempfile::tempdir().unwrap();
let link = dir.path().join("link");