File tree 1 file changed +0
-25
lines changed
1 file changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -1994,31 +1994,6 @@ test "delete a setAsCwd directory on Windows" {
1994
1994
tmp .parent_dir .close ();
1995
1995
}
1996
1996
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
-
2022
1997
test "invalid UTF-8/WTF-8 paths" {
2023
1998
const expected_err = switch (native_os ) {
2024
1999
.wasi = > error .InvalidUtf8 ,
You can’t perform that action at this time.
0 commit comments