-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[browser][MT] longer timeout for VFS heavy tests #105258
Conversation
Tagging subscribers to 'arch-wasm': @lewing |
@@ -16,6 +16,11 @@ | |||
<DefineConstants>$(DefineConstants);TARGET_BROWSER</DefineConstants> | |||
</PropertyGroup> | |||
|
|||
<PropertyGroup Condition="'$(TargetOS)' == 'browser' and '$(WasmEnableThreads)' == 'true'"> | |||
<!-- VSF is emulated on the UI thread and all calls are slow because they are marshaled --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: typo in VSF->VFS
@@ -243,6 +243,9 @@ | |||
<Command>$(HelixCommand)</Command> | |||
<Timeout>$(_workItemTimeout)</Timeout> | |||
<Timeout Condition="'$(Scenario)' == 'WasmTestOnNodeJS' and '%(FileName)' == 'System.Net.Http.Functional.Tests'">01:20:00</Timeout> | |||
<!-- VSF is emulated on the UI thread and all calls are slow because they are marshaled --> | |||
<Timeout Condition="'%(FileName)' == 'System.IO.FileSystem.Tests' and '$(WasmEnableThreads)' == 'true'">01:20:00</Timeout> | |||
<Timeout Condition="'%(FileName)' == 'System.Private.Xml.Tests' and '$(WasmEnableThreads)' == 'true'">01:20:00</Timeout> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
curious why we need this here, is the one in the .csproj not enough?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
they are separate msbuild run. This runs once for all assemblies.
longer timeout for MT
because VFS in is in the UI thread and it's slower
Contributes to #103524
Contributes to #103623