<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-rtmock/src, branch arti-v1.4.0</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-01-30T08:39:30Z</updated>
<entry>
<title>fix: fix typos</title>
<updated>2025-01-30T08:39:30Z</updated>
<author>
<name>Dimitris Apostolou</name>
<email>dimitris.apostolou@icloud.com</email>
</author>
<published>2025-01-30T08:39:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6371829c976f6a5b77d46bf977f369a915f2ced3'/>
<id>urn:sha1:6371829c976f6a5b77d46bf977f369a915f2ced3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-rtcompat: Rename UnsupportedStreamOps to NoOpStreamOpsHandle.</title>
<updated>2025-01-15T13:49:17Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-01-13T11:48:16Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4ec53ca4dea324c2c170885d8556a67c802e491d'/>
<id>urn:sha1:4ec53ca4dea324c2c170885d8556a67c802e491d</id>
<content type='text'>
This renames UnsupportedStreamOpsHandle to NoOpStreamOpsHandle for
clarity (the old name kind of sounded like the name of an error type).
</content>
</entry>
<entry>
<title>tor-rtmock: Implement StreamOps for MockTlsStream (fmt).</title>
<updated>2025-01-15T13:49:17Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-01-09T11:59:59Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5734dba4980246fac6a1a3fb061961ae6e799e64'/>
<id>urn:sha1:5734dba4980246fac6a1a3fb061961ae6e799e64</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-rtmock: Implement StreamOps for MockTlsStream.</title>
<updated>2025-01-15T13:49:17Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-01-08T19:05:12Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0367dc1552e3383205806eeff40242f926c54c49'/>
<id>urn:sha1:0367dc1552e3383205806eeff40242f926c54c49</id>
<content type='text'>
We're about to add a trait bound that forces `MockTlsStream` to impl
`StreamOps`.
</content>
</entry>
<entry>
<title>tor-rtmock: drop_reentrancy test: Run under miri too</title>
<updated>2025-01-15T10:34:20Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2025-01-07T14:33:41Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=eca4022290285850360d52af5eca1b3a37b6816d'/>
<id>urn:sha1:eca4022290285850360d52af5eca1b3a37b6816d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-rtmock: Explicitly manage the lifetime of the future</title>
<updated>2025-01-15T10:34:07Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2025-01-02T15:47:55Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ae4ede76614985a19a3245bbc4cfc7e6a6340b84'/>
<id>urn:sha1:ae4ede76614985a19a3245bbc4cfc7e6a6340b84</id>
<content type='text'>
Previously, if r is Pending, `fut` is moved out of (stored in
`task.fut`), whereas if r is Ready, it is retained and then dropped at
the end of the loop iteration.  This is quite subtle, and involves
`fut` being in a "maybe moved out of" state (which cannot be
represented in Rust's surface type system) after the block with the
`data` lock.

Let's write code that more clearly ensures that the compiler DTRT.
</content>
</entry>
<entry>
<title>tor-rtmock: Add a test case for Future drop entrancy</title>
<updated>2025-01-15T10:34:06Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2025-01-02T16:11:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=11699a9da14098cf8212a95de66ac2a0e0bae25c'/>
<id>urn:sha1:11699a9da14098cf8212a95de66ac2a0e0bae25c</id>
<content type='text'>
This passes right now, but only because the lifetime of the `fut`
variable in `execute_until_first_stall` happens to be right.
</content>
</entry>
<entry>
<title>tor-rtmock: Avoid misleading task dumps by careful drop sequencing</title>
<updated>2025-01-15T10:33:18Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2025-01-02T16:16:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=97db02abf3681a7baa49463549baffae6143e9ed'/>
<id>urn:sha1:97db02abf3681a7baa49463549baffae6143e9ed</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-rtmock: Add some more tracing / debug output</title>
<updated>2025-01-15T10:33:18Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-12-18T14:43:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=99f1ba647f08b20e7576a619c0333ad7f6f030d9'/>
<id>urn:sha1:99f1ba647f08b20e7576a619c0333ad7f6f030d9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-rtmock: Explain a difficulty with test trace output</title>
<updated>2025-01-15T10:33:18Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-12-18T14:39:37Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ab1399d100a9ac75804d605fa4841955476520eb'/>
<id>urn:sha1:ab1399d100a9ac75804d605fa4841955476520eb</id>
<content type='text'>
</content>
</entry>
</feed>
