Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tests/integration/test_lists/waives.txt
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,6 @@ unittest/_torch/visual_gen/test_attention_integration.py::test_sage_attention_se
unittest/_torch/visual_gen/test_attention_integration.py::test_sage_attention_self_attention[int8-2-1560] SKIP (https://nvbugs/6198760)
unittest/auto_deploy/multigpu/custom_ops SKIP (https://nvbugs/6403920)
unittest/disaggregated/test_kv_transfer.py::test_transfer_worker_v2[tp4_pp1_to_tp2_pp2] SKIP (https://nvbugs/6426834)
unittest/executor/test_proxy_fast_death.py::test_pool_session_shutdown_never_blocks_after_release SKIP (https://nvbugs/6480574)
unittest/executor/test_rpc.py::TestRpcCorrectness::test_incremental_task_async SKIP (https://nvbugs/5741476)
unittest/executor/test_rpc_proxy.py SKIP (https://nvbugs/5605741)
unittest/executor/test_rpc_worker.py SKIP (https://nvbugs/5605741)
Expand Down
8 changes: 8 additions & 0 deletions tests/unittest/executor/test_proxy_fast_death.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,14 @@ def test_pool_session_shutdown_never_blocks_after_release():
pool = _Mock()
pool._pool.thread = None # no real manager thread to deregister
session.mpi_pool = pool
# __init__ is bypassed above; seed the attributes that shutdown() reads
# so the test exercises the release/shutdown contract, not attribute
# lookup on a raw-constructed session. Keep them minimal:
# * n_workers is only used by shutdown()'s log line.
# * _wait_shutdown gates the post-shutdown worker-exit barrier;
# the test targets the blocking-join guard, so leave it off.
session.n_workers = 1
session._wait_shutdown = False

session.release_exit_joins()
session.shutdown() # owner asks for the default blocking shutdown
Expand Down
Loading