Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
3d997b6d
Commit
3d997b6d
authored
Nov 20, 2018
by
Anton Evangelatov
Committed by
Guillaume Ballet
Nov 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whisper: log errors on failed tests (#18134)
Debug traces to investigate a travis issue on MacOS
parent
d876f214
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
peer_test.go
whisper/whisperv5/peer_test.go
+1
-1
peer_test.go
whisper/whisperv6/peer_test.go
+1
-1
No files found.
whisper/whisperv5/peer_test.go
View file @
3d997b6d
...
...
@@ -139,7 +139,7 @@ func initialize(t *testing.T) {
err
=
node
.
server
.
Start
()
if
err
!=
nil
{
t
.
Fatalf
(
"failed to start server %d.
"
,
i
)
t
.
Fatalf
(
"failed to start server %d.
err: %v"
,
i
,
err
)
}
for
j
:=
0
;
j
<
i
;
j
++
{
...
...
whisper/whisperv6/peer_test.go
View file @
3d997b6d
...
...
@@ -232,7 +232,7 @@ func initialize(t *testing.T) {
func
startServer
(
t
*
testing
.
T
,
s
*
p2p
.
Server
)
{
err
:=
s
.
Start
()
if
err
!=
nil
{
t
.
Fatalf
(
"failed to start the fi
srt server."
)
t
.
Fatalf
(
"failed to start the fi
rst server. err: %v"
,
err
)
}
atomic
.
AddInt64
(
&
result
.
started
,
1
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment