mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 06:48:05 +01:00
Merge branch 'maint-0.4.2'
This commit is contained in:
commit
8095c785f1
3 changed files with 10 additions and 0 deletions
7
changes/ticket32705_disable
Normal file
7
changes/ticket32705_disable
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
o Minor bugfixes (testing):
|
||||||
|
- When TOR_DISABLE_PRACTRACKER is set, do not apply it to the
|
||||||
|
test_practracker.sh script. Doing so caused a test failure.
|
||||||
|
Fixes bug 32705; bugfix on 0.4.2.1-alpha.
|
||||||
|
- When TOR_DISABLE_PRACTRACKER is set, log a notice to stderr
|
||||||
|
when skipping practracker checks.
|
||||||
|
Fixes bug 32705; bugfix on 0.4.2.1-alpha.
|
|
@ -300,5 +300,7 @@ variable.
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
if os.environ.get("TOR_DISABLE_PRACTRACKER"):
|
if os.environ.get("TOR_DISABLE_PRACTRACKER"):
|
||||||
|
print("TOR_DISABLE_PRACTRACKER is set, skipping practracker tests.",
|
||||||
|
file=sys.stderr)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
main(sys.argv)
|
main(sys.argv)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
umask 077
|
umask 077
|
||||||
|
unset TOR_DISABLE_PRACTRACKER
|
||||||
|
|
||||||
TMPDIR=""
|
TMPDIR=""
|
||||||
clean () {
|
clean () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue