Skip to content

Commit 4c31c28

Browse files
remove duplicate test
1 parent 2e44066 commit 4c31c28

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

lib/std/fs/test.zig

-25
Original file line numberDiff line numberDiff line change
@@ -1994,31 +1994,6 @@ test "delete a setAsCwd directory on Windows" {
19941994
tmp.parent_dir.close();
19951995
}
19961996

1997-
test "use Lock.none on Windows" {
1998-
if (native_os != .windows) return error.SkipZigTest;
1999-
2000-
var tmp = tmpDir(.{});
2001-
defer tmp.cleanup();
2002-
2003-
// Create a locked file.
2004-
const test_file = try tmp.dir.createFile("test_file", .{ .lock = .exclusive, .lock_nonblocking = true });
2005-
defer test_file.close();
2006-
2007-
// Attempt to unlock the file via fs.lock with Lock.none.
2008-
try File.lock(test_file, .none);
2009-
2010-
// Attempt to open the file now that it should be unlocked.
2011-
const test_file2 = try tmp.dir.openFile("test_file", .{ .lock = .exclusive, .lock_nonblocking = true });
2012-
defer test_file2.close();
2013-
2014-
// Make sure Lock.none works with tryLock as well.
2015-
try testing.expect(try File.tryLock(test_file2, .none));
2016-
2017-
// Attempt to open the file since it should be unlocked again.
2018-
const test_file3 = try tmp.dir.openFile("test_file", .{});
2019-
test_file3.close();
2020-
}
2021-
20221997
test "invalid UTF-8/WTF-8 paths" {
20231998
const expected_err = switch (native_os) {
20241999
.wasi => error.InvalidUtf8,

0 commit comments

Comments
 (0)