You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Valhalla tests are structured so that dependencies between various tests exist, resulting in certain tests having to be run before other ones. In most cases, the dependencies are caused by certain tests performing some setup work that's also needed by other tests. To make the tests easier to work with, the tests should be refactored so that any kind of prerequisite work is done in special setup methods. Moving code in this way is likely to require splitting up the test methods across a few test classes. The benefits will be:
being able to run test method individually without having to worry about figuring out which other tests need to be run first
it should become possible to run all tests multiple times while only running the necessary setup once
The text was updated successfully, but these errors were encountered:
This should be resolved when we transition to the src_lw5 version of ValueTypeTests which does not rely as heavily on asm. See #18558.
fyi @hangshao0 I think this can be closed.
Currently, Valhalla tests are structured so that dependencies between various tests exist, resulting in certain tests having to be run before other ones. In most cases, the dependencies are caused by certain tests performing some setup work that's also needed by other tests. To make the tests easier to work with, the tests should be refactored so that any kind of prerequisite work is done in special setup methods. Moving code in this way is likely to require splitting up the test methods across a few test classes. The benefits will be:
The text was updated successfully, but these errors were encountered: