-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[wasm] Run AOT, and Wasm.Build.Tests on windows #59479
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 15 commits
8eb1aad
200f303
82ba001
fd4f07f
44d6b2b
9c2cef8
88fa95c
dcf08e4
ea57482
bfd918f
6e8abc4
cfd13b8
058897f
4c66b4b
3e2e94c
059e661
00b74ff
cf488d3
804d8f8
874a40b
5817dbb
8518a2d
45565ce
250cc88
29848e1
6bc5df8
90d8622
93ce46b
43b0917
29a0635
189e45c
2698fbf
968effb
3453d6f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,6 +21,7 @@ public class IdnMappingIdnaConformanceTests | |
| /// There are some others that failed which have been commented out and marked in the dataset as "GETASCII DOES FAILS ON WINDOWS 8.1" | ||
| /// Same applies to Windows 10 >= 10.0.15063 in the IdnaTest_9.txt file | ||
| [Fact] | ||
| [ActiveIssue("https://github.com/dotnet/runtime/issues/58708", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT), nameof(PlatformDetection.IsWindows))] | ||
|
||
| public void GetAscii_Success() | ||
| { | ||
| Assert.All(Factory.GetDataset().Where(e => e.ASCIIResult.Success), entry => | ||
|
|
@@ -51,6 +52,7 @@ public void GetAscii_Success() | |
| /// Same applies to Windows 10 >= 10.0.15063 in the IdnaTest_9.txt file | ||
| /// </summary> | ||
| [Fact] | ||
| [ActiveIssue("https://github.com/dotnet/runtime/issues/58708", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT), nameof(PlatformDetection.IsWindows))] | ||
| public void GetUnicode_Success() | ||
| { | ||
| Assert.All(Factory.GetDataset().Where(e => e.UnicodeResult.Success && e.UnicodeResult.ValidDomainName), entry => | ||
|
|
@@ -83,6 +85,7 @@ public void GetUnicode_Success() | |
| /// Same applies to Windows 10 >= 10.0.15063 in the IdnaTest_9.txt file | ||
| /// </remarks> | ||
| [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer))] // https://github.com/dotnet/runtime/issues/22409 | ||
| [ActiveIssue("https://github.com/dotnet/runtime/issues/58708", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT), nameof(PlatformDetection.IsWindows))] | ||
| public void GetAscii_Invalid() | ||
| { | ||
| Assert.All(Factory.GetDataset().Where(entry => !entry.ASCIIResult.Success), entry => | ||
|
|
@@ -112,6 +115,7 @@ public void GetAscii_Invalid() | |
| /// Same applies to Windows 10 >= 10.0.15063 in the IdnaTest_9.txt file | ||
| /// </remarks> | ||
| [Fact] | ||
| [ActiveIssue("https://github.com/dotnet/runtime/issues/58708", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT), nameof(PlatformDetection.IsWindows))] | ||
| public void GetUnicode_Invalid() | ||
| { | ||
| Assert.All(Factory.GetDataset().Where(entry => !entry.UnicodeResult.Success), entry => | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.