File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed
test/Microsoft.NET.Build.Tests Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,15 @@ public GivenThatWeWantToGenerateADepsFileForATool(ITestOutputHelper log) : base(
17
17
{
18
18
}
19
19
20
- // https://github.com/dotnet/sdk/issues/49665
21
- [ PlatformSpecificFact ( TestPlatforms . Any & ~ TestPlatforms . OSX ) ]
20
+ [ CoreMSBuildOnlyFact ]
22
21
public void It_creates_a_deps_file_for_the_tool_and_the_tool_runs ( )
23
22
{
23
+ if ( RuntimeInformation . IsOSPlatform ( OSPlatform . OSX ) )
24
+ {
25
+ // https://github.com/dotnet/sdk/issues/49665
26
+ return ;
27
+ }
28
+
24
29
TestProject toolProject = new ( )
25
30
{
26
31
Name = "TestTool" ,
@@ -37,10 +42,15 @@ public void It_creates_a_deps_file_for_the_tool_and_the_tool_runs()
37
42
. And . HaveStdOutContaining ( "Hello World!" ) ;
38
43
}
39
44
40
- // https://github.com/dotnet/sdk/issues/49665
41
- [ PlatformSpecificFact ( TestPlatforms . Any & ~ TestPlatforms . OSX ) ]
45
+ [ CoreMSBuildOnlyFact ]
42
46
public void It_handles_conflicts_when_creating_a_tool_deps_file ( )
43
47
{
48
+ if ( RuntimeInformation . IsOSPlatform ( OSPlatform . OSX ) )
49
+ {
50
+ // https://github.com/dotnet/sdk/issues/49665
51
+ return ;
52
+ }
53
+
44
54
TestProject toolProject = new ( )
45
55
{
46
56
Name = "DependencyContextTool" ,
You can’t perform that action at this time.
0 commit comments