Skip to content

Commit 8ed5fd1

Browse files
committed
Skip test failing due to singlefile issues on win-x86
1 parent 0f58029 commit 8ed5fd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupOutputsTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public PublishItemsOutputGroupOutputsTests(ITestOutputHelper log) : base(log)
2020

2121
[Theory]
2222
[InlineData(true, false)]
23-
[InlineData(true, true)]
23+
[InlineData(true, true, Skip = "https://github.com/dotnet/sdk/issues/49926")]
2424
[InlineData(false, false)]
2525
public void RunPublishItemsOutputGroupOutputsTest(bool specifyRid, bool singleFile)
2626
{
@@ -62,7 +62,7 @@ public void RunPublishItemsOutputGroupOutputsTest(bool specifyRid, bool singleFi
6262
MetadataNames = { "OutputPath" },
6363
};
6464

65-
command.Execute().Should().Pass();
65+
command.WithWorkingDirectory(testAsset.TestRoot).Execute("/bl:{}.binlog").Should().Pass();
6666
var items = from item in command.GetValuesWithMetadata()
6767
select new
6868
{

0 commit comments

Comments
 (0)