We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b41daec commit 46430d3Copy full SHA for 46430d3
1 file changed
libarchive/test/test_write_disk_fixup.c
@@ -29,6 +29,9 @@
29
*/
30
DEFINE_TEST(test_write_disk_fixup)
31
{
32
+#if defined(_WIN32) && !defined(__CYGWIN__)
33
+ skipping("Skipping test on Windows");
34
+#else
35
struct archive *ad;
36
struct archive_entry *ae;
37
int r;
@@ -74,4 +77,5 @@ DEFINE_TEST(test_write_disk_fixup)
74
77
/* Test the entries on disk. */
75
78
assertIsSymlink("dir", "victim", 0);
76
79
assertFileMode("victim", 0600);
80
+#endif
81
}
0 commit comments