Skip to content
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
don't run the test on WASM as it does not support multiple threads
  • Loading branch information
adamsitnik committed Dec 1, 2021
commit fa1f01418378366d98d4708cd61c39fd93b21532
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ public void UnixExtractFilePermissionsCompat(string zipName, string expectedPerm
}

[Fact]
[PlatformSpecific(TestPlatforms.AnyUnix & ~TestPlatforms.Browser)]
public async Task CanZipNamedPipe()
{
string destPath = Path.Combine(TestDirectory, "dest.zip");
Expand Down Expand Up @@ -195,7 +196,6 @@ private static string GetExpectedPermissions(string expectedPermissions)
return expectedPermissions;
}


[DllImport("libc", SetLastError = true)]
private static extern int mkfifo(string path, int mode);
}
Expand Down