We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca98c5f commit 3cbc8a5Copy full SHA for 3cbc8a5
1 file changed
src/XenoAtom.CommandLine.Tests/NativeAotSizeTests.cs
@@ -50,8 +50,8 @@ public void PublishAot_Size_IsUnderLimit()
50
//Console.WriteLine($"Executable size: {exeSize:N0} bytes");
51
// NativeAOT output size is sensitive to SDK/toolchain changes (even between patch versions).
52
long maxBytes = OperatingSystem.IsWindows() ? 1_330_000 :
53
- OperatingSystem.IsMacOS() ? 1_470_000 :
54
- 1_520_000; // Linux (To check);
+ OperatingSystem.IsMacOS() ? 1_550_000 :
+ 1_580_000; // Linux (To check);
55
Assert.IsLessThanOrEqualTo(maxBytes, exeSize, $"NativeAOT size regression: {exeSize:N0} bytes > {maxBytes:N0} bytes. Output: `{exePath}`");
56
}
57
0 commit comments