Commit 872998dd authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Merge branch 'ticket28179_squashed_merged'

parents d3da0770 44a80bb3
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -76,6 +76,8 @@ test_script:
            $buildpath = @("C:\msys64\${env:compiler_path}\bin") + $oldpath
            $env:Path = $buildpath -join ';'
            Set-Location "${env:build}"
            Copy-Item "C:/msys64/${env:compiler_path}/bin/libssp-0.dll" -Destination "${env:build}/src/test"
            Copy-Item "C:/msys64/${env:compiler_path}/bin/zlib1.dll" -Destination "${env:build}/src/test"
            Execute-Bash "VERBOSE=1 make -j2 check"
    }

+2 −2
Original line number Diff line number Diff line
@@ -241,7 +241,7 @@ uptime-*.json
/src/test/test
/src/test/test-slow
/src/test/test-bt-cl
/src/test/test-child
/src/test/test-process
/src/test/test-memwipe
/src/test/test-ntor-cl
/src/test/test-hs-ntor-cl
@@ -251,7 +251,7 @@ uptime-*.json
/src/test/test.exe
/src/test/test-slow.exe
/src/test/test-bt-cl.exe
/src/test/test-child.exe
/src/test/test-process.exe
/src/test/test-ntor-cl.exe
/src/test/test-hs-ntor-cl.exe
/src/test/test-memwipe.exe

changes/ticket26360

0 → 100644
+4 −0
Original line number Diff line number Diff line
  o Minor bugfixes (pluggable transports):
    - Make sure that data is continously read from standard out and error of the
      PT child-process to avoid deadlocking when the pipes' buffer is full.
      Fixes bug 26360; bugfix on 0.2.3.6-alpha.

changes/ticket28179

0 → 100644
+5 −0
Original line number Diff line number Diff line
  o Minor features (process):
    - Add new Process API for handling child processes. This
      new API allows Tor to have bi-directional
      communication with child processes on both Unix and Windows.
      Closes ticket 28179.

changes/ticket28180

0 → 100644
+3 −0
Original line number Diff line number Diff line
  o Minor features (pluggable transports):
    - Add support for logging to Tor's logging subsystem from a pluggable
      transport process. Partial implementation for ticket 28180
Loading