mirror of
https://git.yoctoproject.org/poky
synced 2026-05-04 22:39:49 +02:00
stress: add new package
Deliberately simple workload generator for POSIX systems. It imposes a configurable amount of CPU, memory, I/O, and disk stress on the system. Moving the package from meta-linaro as a dependency for rt-tests ptest (From OE-Core rev: ae3d6524f27cc7efad62e7ca3f4a95942a725b28) Signed-off-by: Maxin B. John <maxin.john@enea.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
00be85af63
commit
c3991d27a2
79
meta/recipes-extended/stress/files/texinfo.patch
Normal file
79
meta/recipes-extended/stress/files/texinfo.patch
Normal file
@@ -0,0 +1,79 @@
|
||||
--- a/doc/stress.texi
|
||||
+++ b/doc/stress.texi
|
||||
@@ -62,47 +62,47 @@
|
||||
|
||||
@table @samp
|
||||
@item -?
|
||||
-@itemx --help
|
||||
+@item --help
|
||||
Show help information.
|
||||
|
||||
-@itemx --version
|
||||
+@item --version
|
||||
Show version information.
|
||||
|
||||
@item -v
|
||||
-@itemx --verbose
|
||||
+@item --verbose
|
||||
Turn up verbosity.
|
||||
|
||||
@item -q
|
||||
-@itemx --quiet
|
||||
+@item --quiet
|
||||
Turn down verbosity.
|
||||
|
||||
@item -n
|
||||
-@itemx --dry-run
|
||||
+@item --dry-run
|
||||
Show what would have been done.
|
||||
|
||||
@item -t @var{secs}
|
||||
-@itemx --timeout @var{secs}
|
||||
+@item --timeout @var{secs}
|
||||
Time out after @var{secs} seconds.
|
||||
|
||||
-@itemx --backoff @var{usecs}
|
||||
+@item --backoff @var{usecs}
|
||||
Wait for factor of @var{usecs} microseconds before starting work.
|
||||
|
||||
@item -c @var{forks}
|
||||
-@itemx --cpu @var{forks}
|
||||
+@item --cpu @var{forks}
|
||||
Spawn @var{forks} processes each spinning on @samp{sqrt()}.
|
||||
|
||||
@item -i @var{forks}
|
||||
-@itemx --io @var{forks}
|
||||
+@item --io @var{forks}
|
||||
Spawn @var{forks} processes each spinning on @samp{sync()}.
|
||||
|
||||
@item -m @var{forks}
|
||||
-@itemx --vm @var{forks}
|
||||
+@item --vm @var{forks}
|
||||
Spawn @var{forks} processes each spinning on @samp{malloc()}.
|
||||
|
||||
-@itemx --vm-bytes @var{bytes}
|
||||
+@item --vm-bytes @var{bytes}
|
||||
Allocate @var{bytes} number of bytes. The default is 1.
|
||||
|
||||
-@itemx --vm-hang
|
||||
+@item --vm-hang
|
||||
Instruct each vm hog process to go to sleep after allocating memory. This
|
||||
contrasts with their normal behavior, which is to free the memory and
|
||||
reallocate @emph{ad infinitum}. This is useful for simulating low memory
|
||||
@@ -114,13 +114,13 @@
|
||||
@end example
|
||||
|
||||
@item -d @var{forks}
|
||||
-@itemx --hdd @var{forks}
|
||||
+@item --hdd @var{forks}
|
||||
Spawn @var{forks} processes each spinning on @samp{write()}.
|
||||
|
||||
-@itemx --hdd-bytes @var{bytes}
|
||||
+@item --hdd-bytes @var{bytes}
|
||||
Write @var{bytes} number of bytes. The default is 1GB.
|
||||
|
||||
-@itemx --hdd-noclean
|
||||
+@item --hdd-noclean
|
||||
Do not unlink file(s) to which random ASCII data is written.
|
||||
|
||||
@end table
|
||||
14
meta/recipes-extended/stress/stress_1.0.4.bb
Normal file
14
meta/recipes-extended/stress/stress_1.0.4.bb
Normal file
@@ -0,0 +1,14 @@
|
||||
DESCRIPTION = "Deliberately simple workload generator for POSIX systems. It \
|
||||
imposes a configurable amount of CPU, memory, I/O, and disk stress on the system."
|
||||
HOMEPAGE = "http://people.seas.harvard.edu/~apw/stress/"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
||||
|
||||
SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/stress/stress-${PV}.tar.gz/a607afa695a511765b40993a64c6e2f4/stress-${PV}.tar.gz \
|
||||
file://texinfo.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "a607afa695a511765b40993a64c6e2f4"
|
||||
SRC_URI[sha256sum] = "369c997f65e8426ae8b318d4fdc8e6f07a311cfa77cc4b25dace465c582163c0"
|
||||
|
||||
inherit autotools
|
||||
Reference in New Issue
Block a user