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
36ac47bd
Commit
36ac47bd
authored
9 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'public/bug18204_028'
parents
25fa2180
b860f82d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changes/bug18204_028
+3
-0
3 additions, 0 deletions
changes/bug18204_028
src/test/bt_test.py
+8
-0
8 additions, 0 deletions
src/test/bt_test.py
src/test/test_bt.sh
+3
-3
3 additions, 3 deletions
src/test/test_bt.sh
with
14 additions
and
3 deletions
changes/bug18204_028
0 → 100644
+
3
−
0
View file @
36ac47bd
o Testing:
- Treat backtrace test failures as expected on FreeBSD until we
solve bug 17808. Closes ticket 18204.
This diff is collapsed.
Click to expand it.
src/test/bt_test.py
+
8
−
0
View file @
36ac47bd
...
...
@@ -39,7 +39,15 @@ for I in range(len(LINES)):
print
(
"
OK
"
)
sys
.
exit
(
0
)
print
(
"
BAD
"
)
for
l
in
LINES
:
print
(
"
{}
"
.
format
(
l
),
end
=
""
)
if
sys
.
platform
.
startswith
(
'
freebsd
'
):
# See bug #17808 if you know how to fix this.
print
(
"
Test failed; but FreeBSD is known to have backtrace problems.
\n
"
"
Treating as
'
SKIP
'
.
"
)
sys
.
exit
(
77
)
sys
.
exit
(
1
)
This diff is collapsed.
Click to expand it.
src/test/test_bt.sh
+
3
−
3
View file @
36ac47bd
...
...
@@ -3,8 +3,8 @@
exitcode
=
0
"
${
builddir
:-
.
}
/src/test/test-bt-cl"
backtraces
||
exit
77
"
${
builddir
:-
.
}
/src/test/test-bt-cl"
assert |
"
${
PYTHON
:-
python
}
"
"
${
abs_top_srcdir
:-
.
}
/src/test/bt_test.py"
||
exitcode
=
1
"
${
builddir
:-
.
}
/src/test/test-bt-cl"
crash |
"
${
PYTHON
:-
python
}
"
"
${
abs_top_srcdir
:-
.
}
/src/test/bt_test.py"
||
exitcode
=
1
"
${
builddir
:-
.
}
/src/test/test-bt-cl"
backtraces
||
exit
$?
"
${
builddir
:-
.
}
/src/test/test-bt-cl"
assert |
"
${
PYTHON
:-
python
}
"
"
${
abs_top_srcdir
:-
.
}
/src/test/bt_test.py"
||
exitcode
=
"
$?
"
"
${
builddir
:-
.
}
/src/test/test-bt-cl"
crash |
"
${
PYTHON
:-
python
}
"
"
${
abs_top_srcdir
:-
.
}
/src/test/bt_test.py"
||
exitcode
=
"
$?
"
exit
${
exitcode
}
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