]> git.lizzy.rs Git - rust.git/commit
auto merge of #16894 : alexcrichton/rust/issue-16872, r=huonw
authorbors <bors@rust-lang.org>
Sun, 31 Aug 2014 17:15:52 +0000 (17:15 +0000)
committerbors <bors@rust-lang.org>
Sun, 31 Aug 2014 17:15:52 +0000 (17:15 +0000)
commit08176a356124322dfe9ec33b7846a517fc7ae532
tree6221a6ec3c21928b7d0f1b6705df1b3fa2da8fac
parent27e8d5bca79c09258c757e9be6e13aaa24086d84
parent4ddbb0d4b1edb6f8f1fedf34e4bdc96710402800
auto merge of #16894 : alexcrichton/rust/issue-16872, r=huonw

It was previously asserted that each thread received at least one connection,
but this is not guaranteed to always be the case due to scheduling. This test
also deadlocked on failure due to a lingering reference to the sending half of
the channel, so that reference is now also eagerly dropped so the test can fail
properly if something bad happens.

Closes #16872