File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
src/BuiltInTools/dotnet-watch/Internal/FileWatcher Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 22// The .NET Foundation licenses this file to you under the MIT license.
33
44using System . ComponentModel ;
5- using Microsoft . Extensions . Logging ;
65
76namespace Microsoft . DotNet . Watch
87{
Original file line number Diff line number Diff line change @@ -94,16 +94,12 @@ await TestOperation(
9494 }
9595
9696 [ Theory ]
97+ [ SkipOnPlatform ( TestPlatforms . AnyUnix , "https://github.com/dotnet/runtime/issues/116351" ) ]
9798 [ CombinatorialData ]
9899 public async Task NewFileInNewDirectory ( bool usePolling , bool nested )
99100 {
100101 var dir = _testAssetManager . CreateTestDirectory ( identifier : usePolling . ToString ( ) ) . Path ;
101102
102- if ( RuntimeInformation . IsOSPlatform ( OSPlatform . Linux ) )
103- {
104- Directory . CreateDirectory ( Path . Combine ( dir , ".dummy" ) ) ;
105- }
106-
107103 var dir1 = Path . Combine ( dir , "dir1" ) ;
108104 var dir2 = nested ? Path . Combine ( dir1 , "dir2" ) : dir1 ;
109105 var fileInSubdir = Path . Combine ( dir2 , "file_in_subdir" ) ;
You can’t perform that action at this time.
0 commit comments