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
eb00eff0
Commit
eb00eff0
authored
6 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge branch 'ticket25997'
parents
1ef1ed76
e386d61c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/ticket25997
+5
-0
5 additions, 0 deletions
changes/ticket25997
src/test/test_hs_common.c
+5
-8
5 additions, 8 deletions
src/test/test_hs_common.c
with
10 additions
and
8 deletions
changes/ticket25997
0 → 100644
+
5
−
0
View file @
eb00eff0
o Minor bugfixes (testing, coverage):
- Remove randomness from the hs_common/responsible_hsdirs test,
so that it always takes the same path through the function it tests.
Fixes bug 25997; bugfix on 0.3.2.1-alpha.
This diff is collapsed.
Click to expand it.
src/test/test_hs_common.c
+
5
−
8
View file @
eb00eff0
...
...
@@ -360,11 +360,8 @@ mock_networkstatus_get_live_consensus(time_t now)
static
void
test_responsible_hsdirs
(
void
*
arg
)
{
time_t
now
=
approx_time
();
smartlist_t
*
responsible_dirs
=
smartlist_new
();
networkstatus_t
*
ns
=
NULL
;
int
retval
;
(
void
)
arg
;
hs_init
();
...
...
@@ -386,12 +383,12 @@ test_responsible_hsdirs(void *arg)
helper_add_hsdir_to_networkstatus
(
ns
,
3
,
"spyro"
,
0
);
}
ed25519_keypair_t
kp
;
retval
=
ed25519_keypair_generate
(
&
kp
,
0
);
tt_int_op
(
retval
,
OP_EQ
,
0
);
/* Use a fixed time period and pub key so we always take the same path */
ed25519_public_key_t
pubkey
;
uint64_t
time_period_num
=
17653
;
// 2 May, 2018, 14:00.
memset
(
&
pubkey
,
42
,
sizeof
(
pubkey
));
uint64_t
time_period_num
=
hs_get_time_period_num
(
now
);
hs_get_responsible_hsdirs
(
&
kp
.
pubkey
,
time_period_num
,
hs_get_responsible_hsdirs
(
&
pubkey
,
time_period_num
,
0
,
0
,
responsible_dirs
);
/* Make sure that we only found 2 responsible HSDirs.
...
...
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