Skip to content

Commit

Permalink
Reduce release/64 limit for EndToEndTests.Constraints.
Browse files Browse the repository at this point in the history
Backport of #61480
  • Loading branch information
JoeRobich authored Aug 19, 2022
1 parent 39189ea commit a071d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compilers/CSharp/Test/Emit/Emit/EndToEndTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public void Constraints()
(ExecutionArchitecture.x86, ExecutionConfiguration.Debug) => 420,
(ExecutionArchitecture.x86, ExecutionConfiguration.Release) => 1100,
(ExecutionArchitecture.x64, ExecutionConfiguration.Debug) => 180,
(ExecutionArchitecture.x64, ExecutionConfiguration.Release) => 480,
(ExecutionArchitecture.x64, ExecutionConfiguration.Release) => 400,
_ => throw new Exception($"Unexpected configuration {ExecutionConditionUtil.Architecture} {ExecutionConditionUtil.Configuration}")
};

Expand Down

0 comments on commit a071d4e

Please sign in to comment.