You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement Console.SetWindowSize() for linux (#75824)
Co-authored-by: Stephen Toub <stoub@microsoft.com>
Co-authored-by: Michał Petryka <35800402+MichalPetryka@users.noreply.github.com>
Co-authored-by: Adam Sitnik <adam.sitnik@gmail.com>
Co-authored-by: Dan Moseley <danmose@microsoft.com>
Copy file name to clipboardexpand all lines: src/libraries/System.Console/tests/ManualTests/ManualTests.cs
+33
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,9 @@
5
5
usingSystem.Diagnostics;
6
6
usingSystem.Threading.Tasks;
7
7
usingSystem.IO;
8
+
usingSystem.Runtime.InteropServices;
8
9
usingSystem.Text;
10
+
usingSystem.Threading;
9
11
usingXunit;
10
12
11
13
namespaceSystem
@@ -321,6 +323,37 @@ public static void EncodingTest()
321
323
AssertUserExpectedResults("Pi and Sigma or question marks");
322
324
}
323
325
326
+
[ConditionalFact(nameof(ManualTestsEnabled))]
327
+
[SkipOnPlatform(TestPlatforms.Browser|TestPlatforms.iOS|TestPlatforms.MacCatalyst|TestPlatforms.tvOS,"Not supported on Browser, iOS, MacCatalyst, or tvOS.")]
[PlatformSpecific(TestPlatforms.AnyUnix&~TestPlatforms.Browser&~TestPlatforms.iOS&~TestPlatforms.MacCatalyst&~TestPlatforms.tvOS)]// Expected behavior specific to Unix
[PlatformSpecific(TestPlatforms.AnyUnix&~TestPlatforms.Browser&~TestPlatforms.iOS&~TestPlatforms.MacCatalyst&~TestPlatforms.tvOS)]// Expected behavior specific to Unix
0 commit comments