Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Skip failing process test on Windows Nano. #10979

Merged
merged 2 commits into from
Aug 19, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/System.Diagnostics.Process/tests/ProcessTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,8 @@ public void TestStartWithMissingFile(bool fullPath)
}

[PlatformSpecific(PlatformID.Windows)]
[Fact]
// NativeErrorCode not 193 on Windows Nano for ERROR_BAD_EXE_FORMAT, issue #10290
[ConditionalFact(nameof(PlatformDetection) + "." + nameof(PlatformDetection.IsNotWindowsNanoServer))]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a comment with the associated issue number?

public void TestStartOnWindowsWithBadFileFormat()
{
string path = GetTestFilePath();
Expand Down