Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
a742a80e
Unverified
Commit
a742a80e
authored
5 years ago
by
teor
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'tor-github/pr/1091' into maint-0.3.5
parents
202ccc39
be0a4be2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+2
-0
2 additions, 0 deletions
.travis.yml
changes/bug30713
+5
-0
5 additions, 0 deletions
changes/bug30713
src/test/test_rebind.py
+7
-0
7 additions, 0 deletions
src/test/test_rebind.py
src/test/test_rebind.sh
+2
-2
2 additions, 2 deletions
src/test/test_rebind.sh
with
16 additions
and
2 deletions
.travis.yml
+
2
−
0
View file @
a742a80e
...
...
@@ -184,6 +184,8 @@ install:
-
if [[ "$TEST_STEM" != "" ]]; then pushd stem; python -c "from stem import stem; print(stem.__version__);"; git log -1; popd; fi
script
:
# Skip test_rebind on macOS
-
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export TOR_SKIP_TEST_REBIND=true; fi
-
./autogen.sh
-
CONFIGURE_FLAGS="$ASCIIDOC_OPTIONS $COVERAGE_OPTIONS $HARDENING_OPTIONS $MODULES_OPTIONS $NSS_OPTIONS $OPENSSL_OPTIONS $RUST_OPTIONS --enable-fatal-warnings --disable-silent-rules"
-
echo "Configure flags are $CONFIGURE_FLAGS"
...
...
This diff is collapsed.
Click to expand it.
changes/bug30713
0 → 100644
+
5
−
0
View file @
a742a80e
o Minor bugfixes (testing):
- Skip test_rebind when the TOR_SKIP_TEST_REBIND environmental variable is
set. Fixes bug 30713; bugfix on 0.3.5.1-alpha.
- Skip test_rebind on macOS in Travis, because it is unreliable on
macOS on Travis. Fixes bug 30713; bugfix on 0.3.5.1-alpha.
This diff is collapsed.
Click to expand it.
src/test/test_rebind.py
+
7
−
0
View file @
a742a80e
...
...
@@ -16,6 +16,10 @@ def fail(msg):
logging
.
error
(
'
FAIL
'
)
sys
.
exit
(
msg
)
def
skip
(
msg
):
logging
.
warning
(
'
SKIP: {}
'
.
format
(
msg
))
sys
.
exit
(
77
)
def
try_connecting_to_socksport
():
socks_socket
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
if
socks_socket
.
connect_ex
((
'
127.0.0.1
'
,
socks_port
)):
...
...
@@ -65,6 +69,9 @@ if sys.hexversion < 0x02070000:
if
sys
.
hexversion
>
0x03000000
and
sys
.
hexversion
<
0x03010000
:
fail
(
"
ERROR: unsupported Python3 version (should be >= 3.1)
"
)
if
'
TOR_SKIP_TEST_REBIND
'
in
os
.
environ
:
skip
(
'
$TOR_SKIP_TEST_REBIND is set
'
)
control_port
=
pick_random_port
()
socks_port
=
pick_random_port
()
...
...
This diff is collapsed.
Click to expand it.
src/test/test_rebind.sh
+
2
−
2
View file @
a742a80e
...
...
@@ -27,6 +27,6 @@ elif [ ! -d "$tmpdir" ]; then
exit
3
fi
"
${
PYTHON
:-
python
}
"
"
${
abs_top_srcdir
:-
.
}
/src/test/test_rebind.py"
"
${
TESTING_TOR_BINARY
}
"
"
$tmpdir
"
||
exitcode
=
1
"
${
PYTHON
:-
python
}
"
"
${
abs_top_srcdir
:-
.
}
/src/test/test_rebind.py"
"
${
TESTING_TOR_BINARY
}
"
"
$tmpdir
"
exit
$
{
exitcode
}
exit
$
?
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment