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 12319a0 commit d47c41bCopy full SHA for d47c41b
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_300_000 :
53
- OperatingSystem.IsMacOS() ? 1_450_000 :
54
- 1_500_000; // Linux (To check);
+ OperatingSystem.IsMacOS() ? 1_470_000 :
+ 1_520_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