OVM Run Phase

Hi ,

I have just started going through OVM .I have some doubt regarding run phase. Is run phase “bottom up” or “top down”. Manaul say it is “bottom up” but if you see the OVM Cookbook example it display parent first and then child.

Also can anybody suggest me what is the best way of understanding OVM.

Bye and take care,
Mustufa

The run phase is neither bottom up or top down. During the run phase, all components’ run tasks are started inside a fork/join_none, so they are all concurrent - there is no established order to their execution.

-Kurt

Hi Kurt ,

Thanks for the reply.