mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge branch 'maint-0.4.2'
This commit is contained in:
commit
8095c785f1
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 os.environ.get("TOR_DISABLE_PRACTRACKER"):
|
||||
print("TOR_DISABLE_PRACTRACKER is set, skipping practracker tests.",
|
||||
file=sys.stderr)
|
||||
sys.exit(0)
|
||||
main(sys.argv)
|
||||
|
@ -1,6 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
umask 077
|
||||
unset TOR_DISABLE_PRACTRACKER
|
||||
|
||||
TMPDIR=""
|
||||
clean () {
|
||||
|
Loading…
Reference in New Issue
Block a user