summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2020-04-04 13:20:06 +1000
committerteor <teor@torproject.org>2020-04-04 13:20:06 +1000
commitb1e1c6b505e1cadedf6c05706dfffaaab2b70a25 (patch)
treee945ce9a51aebf5189bb611ee1d49441980a4326
parentf43a841d949554005833aacda175906a1d31d432 (diff)
downloadtor-b1e1c6b505e1cadedf6c05706dfffaaab2b70a25.tar.gz
tor-b1e1c6b505e1cadedf6c05706dfffaaab2b70a25.zip
changes: file for ticket 33782
Avoid conflicts between the fake sockets in tor's unit tests, and real file descriptors. Resolves issues running unit tests with GitHub Actions, where the process that embeds or launches the tests has already opened a large number of file descriptors. Fixes bug 33782; bugfix on 0.2.8.1-alpha. Found and fixed by Putta Khunchalee.
-rw-r--r--changes/bug337827
1 files changed, 7 insertions, 0 deletions
diff --git a/changes/bug33782 b/changes/bug33782
new file mode 100644
index 0000000000..9d4a0e7a79
--- /dev/null
+++ b/changes/bug33782
@@ -0,0 +1,7 @@
+ o Testing:
+ - Avoid conflicts between the fake sockets in tor's unit tests, and real
+ file descriptors. Resolves issues running unit tests with GitHub Actions,
+ where the process that embeds or launches the tests has already opened a
+ large number of file descriptors.
+ Fixes bug 33782; bugfix on 0.2.8.1-alpha.
+ Found and fixed by Putta Khunchalee.