Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
skyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Skynet Labs
skyd
Commits
add24d45
Unverified
Commit
add24d45
authored
7 years ago
by
Christopher Schinnerl
Browse files
Options
Downloads
Patches
Plain Diff
better limits for testDownloadMultipleLargeSectors
parent
1d17aeb5
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
siatest/renter/renter_test.go
+2
-2
2 additions, 2 deletions
siatest/renter/renter_test.go
with
2 additions
and
2 deletions
siatest/renter/renter_test.go
+
2
−
2
View file @
add24d45
...
...
@@ -85,11 +85,11 @@ func testUploadDownload(t *testing.T, tg *siatest.TestGroup) {
// in parallel and makes sure that the downloads are blocking each other.
func
testDownloadMultipleLargeSectors
(
t
*
testing
.
T
,
tg
*
siatest
.
TestGroup
)
{
// parallelDownloads is the number of downloads that are run in parallel.
parallelDownloads
:=
5
0
parallelDownloads
:=
1
0
// fileSize is the size of the downloaded file.
fileSize
:=
int
(
10
*
modules
.
SectorSize
)
+
siatest
.
Fuzz
()
// set download limits and reset them after test.
ratelimit
.
SetLimits
(
int64
(
fileSize
),
0
,
modules
.
SectorSize
)
ratelimit
.
SetLimits
(
int64
(
fileSize
)
*
2
,
0
,
modules
.
SectorSize
)
defer
ratelimit
.
SetLimits
(
0
,
0
,
0
)
// uniqueRemoteFiles is the number of files that will be uploaded to the
// network. Downloads will choose the remote file to download randomly.
...
...
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