UVM Phase Jumping

In reply to tfitz:

Hi,
Actually I have not run any sequence . Just waitung for 2 edges of clock in run_phase of driver_1 and only displaying a message in run_phase of driver_2. So, run_phase of driver_2 should complete first since it is not waiting for any event. like :

run_phase of driver_1 start
//

run_phase of driver_2 start
//

run_phase of driver_2 ends
//

shutdown_phase of driver_2 start
//
shutdown_phase of driver_2 ends
//

run_phase of driver_1 ends
//

shutdown_phase of driver_1 starts
//

shutdown_phase of driver_1 ends
//

Like this i want. Driver_2 should enter into its shutdown_phase even before completion of run_phase of driver_1… can it be done???