Skip to content

Commit

Permalink
Disable tests for mount on non windows systems
Browse files Browse the repository at this point in the history
  • Loading branch information
WolverinDEV committed Aug 1, 2024
1 parent 4b48c8c commit 57942e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/mount.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ fn mount_unix_not_implemented() {
}

#[test]
#[cfg(not(unix))]
fn mount_empty() {
let archive = ScratchArchive::new();
let mountdir = TempDir::new().unwrap();
Expand All @@ -59,6 +60,7 @@ fn mount_empty() {
}

#[test]
#[cfg(not(unix))]
fn mount_sub_dirs() {
let archive = ScratchArchive::new();
{
Expand Down Expand Up @@ -117,6 +119,7 @@ fn mount_sub_dirs() {
}

#[test]
#[cfg(not(unix))]
fn mount_file_versions() {
let archive = ScratchArchive::new();
{
Expand Down Expand Up @@ -206,6 +209,7 @@ fn mount_file_versions() {
}

#[test]
#[cfg(not(unix))]
fn mount_cleanup() {
let archive = ScratchArchive::new();
{
Expand Down

0 comments on commit 57942e3

Please sign in to comment.