未验证 提交 3e73be1b 编写于 作者: A Andy Gocke 提交者: GitHub

Enable DwarfDump AOT test in Release (#82862)

* Enable DwarfDump AOT test in Release

There are some reports (#82802) that debugging might be particularly bad
in Release.

* Update warning counts for Release
上级 3c3bea21
......@@ -4,8 +4,8 @@
<OutputType>Exe</OutputType>
<CLRTestKind>BuildAndRun</CLRTestKind>
<CLRTestPriority>0</CLRTestPriority>
<!-- Test checks symbols, so don't run in non-debug builds. -->
<CLRTestTargetUnsupported Condition="'$(Configuration)' != 'Debug' or '$(TargetOS)' != 'linux'">true</CLRTestTargetUnsupported>
<!-- Currently only tracking DWARF info on Linux -->
<CLRTestTargetUnsupported Condition="'$(TargetOS)' != 'linux'">true</CLRTestTargetUnsupported>
</PropertyGroup>
<ItemGroup>
......
......@@ -50,8 +50,13 @@ public static int Main(string[] args)
});
// Just count the number of warnings and errors. There are so many right now that it's not worth enumerating the list
#if DEBUG
const int MinWarnings = 17000;
const int MaxWarnings = 18500;
#else
const int MinWarnings = 12000;
const int MaxWarnings = 13000;
#endif
int count = 0;
string line;
while ((line = proc.StandardOutput.ReadLine()) != null)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册