Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
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
ogs
inf
Guix
Commits
4cf7bd2b
Commit
4cf7bd2b
authored
10 years ago
by
Mark H Weaver
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add stress.
* gnu/packages/admin.scm (stress): New variable.
parent
87806dde
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/admin.scm
+26
-0
26 additions, 0 deletions
gnu/packages/admin.scm
with
26 additions
and
0 deletions
gnu/packages/admin.scm
+
26
−
0
View file @
4cf7bd2b
...
@@ -883,3 +883,29 @@ (define-public acpica
...
@@ -883,3 +883,29 @@ (define-public acpica
tables. This package contains only the user-space tools needed for ACPI table
tables. This package contains only the user-space tools needed for ACPI table
development, not the kernel implementation of ACPI."
)
development, not the kernel implementation of ACPI."
)
(
license
gpl2
)))
; Dual GPLv2/ACPICA Licence
(
license
gpl2
)))
; Dual GPLv2/ACPICA Licence
(
define-public
stress
(
package
(
name
"stress"
)
(
version
"1.0.1"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"mirror://debian/pool/main/s/stress/stress_"
version
".orig.tar.gz"
))
(
sha256
(
base32
"1v9vnzlihqfjsxa93hdbrq72pqqk00dkylmlg8jpxhm7s1w9qfl1"
))))
(
build-system
gnu-build-system
)
(
home-page
"http://packages.debian.org/wheezy/stress"
)
(
synopsis
"A tool to impose load on and stress test a computer system"
)
(
description
"'stress' is a tool that imposes a configurable amount of CPU, memory, I/O,
or disk stress on a POSIX-compliant operating system and reports any errors it
detects.
'stress' is not a benchmark. It is a tool used by system administrators to
evaluate how well their systems will scale, by kernel programmers to evaluate
perceived performance characteristics, and by systems programmers to expose
the classes of bugs which only or more frequently manifest themselves when the
system is under heavy load."
)
(
license
gpl2+
)))
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