-
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
[iOS][tvOS][tests] Re add ios tvos simulator functional tests #52606
[iOS][tvOS][tests] Re add ios tvos simulator functional tests #52606
Conversation
Tagging subscribers to this area: @dotnet/ncl Issue DetailsThe iOS simulator and tvOS simulator AOT functional tests had been removed in a previous commit, but instead, they will be brought back for local development usage, and skipped on CI until we add a way to bypass the
|
@@ -0,0 +1,18 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> |
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.
We could try something like
<Project Sdk="Microsoft.NET.Sdk" TreatAsLocalProperty="MonoForceInterpreter" >
and then set MonoForceInterpreter
to false in this project.
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.
I'll try that in a follow up PR, one to just target running this particular test project on CI.
src/libraries/tests.proj
Outdated
|
||
<!-- Can't AOT in interp mode --> | ||
<ProjectExclusions Condition="'$(MonoForceInterpreter)' == 'true'" | ||
Include="$(RepoRoot)\src\tests\FunctionalTests\iOS\Simulator\AOT\**\*.Test.csproj" /> |
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: Perhaps, no need to add a backslash after $(RepoRoot)
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.
It seems the other instances of $(RepoRoot)
are of similar style
ade150d
to
65eadfd
Compare
The 3 failing lanes in the previous run (before having to fix the merge conflict in |
The failing lane is unrelated |
The iOS simulator and tvOS simulator AOT functional tests had been removed in a previous commit, but instead, they will be brought back for local development usage, and skipped on CI until we add a way to bypass the
Global property cannot be modified
error.