Sync from SUSE:ALP:Source:Standard:1.0 stress-ng revision eebeacdf6864e692315a827cf76e3003

This commit is contained in:
Adrian Schröter 2024-03-01 17:02:33 +01:00
parent 661cc60c90
commit 416f183442
4 changed files with 137 additions and 48 deletions

BIN
V0.16.04.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
stress-ng-0.17.04.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,88 @@
-------------------------------------------------------------------
Thu Feb 22 13:56:11 UTC 2024 - Thorsten Kukuk <kukuk@suse.com>
- Allow to disable apparmor support (ALP supports only SELinux)
-------------------------------------------------------------------
Sat Jan 27 16:26:55 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.17.4:
* kernel-coverage: add longer duration sysbadaddr test
* stress-pthread: disable pthread_sigqueue call for CYGWIN
* stress-tree: disable RB trees for CYGWIN
* stress-sparsematrix: disable RB trees for CYGWIN
* core-helper: add _start workaround for CYGWIN
* core-shim: fix setdomainname check on HAVE_SETDOMAINNAME
* stress-dir: don't reference non-POSIX d_reclen for CYGWIN
* stress-mmapfork: use stress_mmap_populate for MAP_POPULATE
* stress-xattr: workaround ENODATA not being defined for NetBSD
* stress-metamix: voidify parameter temp_dir if O_DIRECTORY is
not defined
* core-time: voidify parameter dnow, cleans up Dilos build
warning
* stress-sysbadaddr: fix another valid fd check, should be >= 0
* stress-sysbadaddr: fix valid fd check, should be >= 0
* stress-sysbadaddr: close fdin rather than fdout on fdout open
failure
* stress-sysfs: use SCNu16 formate specifier for sscanf
uint16_t
* stress-sock: remove shadowed declaration of variable i
* stress-vdso: add clock_getres
* stress-sysinval: set dirfd mode, gid and uid back to original
setting
* stress-sigxfsz: retry setrlimit with smaller size if limit is
too large
* stress-copy-file: replace sizeof(char) with 8
* stress-copy-file: fix the max off_t, it's signed to cater for
this
* stress-sysbadaddr: use shim_cacheflush instead of direct
system call
* stress-sysbadaddr: pass different addresses to ppoll
* stress-af-alg-defconfigs: re-order and remove blank lines
* stress-mmap: add mprotect EACCESS error check for NetBSD
* stress-metamix: add EBADF on fdatasync on read-only fd
* stress-metamix: fix incorrect EBADF check
* stress-metamix: ignore EBADF on fdatasync on read-only file
* stress-ng: don't call mprotect if it does not exist
* stress-syscall: add comment explaining why shell sort is used
instead of qsort
* stress-sysbadaddr: use VOID_RET for typed voidification of
system call returns
* Update copyright year to 2024
* Manual: remove . in Eigen description
* stress-sock: exercise SO_SOCKET SO_* opts that return int
type values
* stress-sysbadaddr: only increment counter if a syscall is to
be made
* stress-sysbadaddr: avoid exercising system calls that will
not fail
* stress-sysbadaddr: add some more xattr system calls
* stress-sysbadaddr: bad_fstat: exercise fstat on temp dir
* stress-sysbadaddr: add copy_file_range
* stress-sysbadaddr: add missing MIPS cacheflush system call
* stress-syscall: add missing MIPS cacheflush system call
* stress-sysbadaddr: exercise shim'd and non-shim'd syscalls
* stress-sysbadaddr: exericse system call parameters with range
of parameters
* stress-sysbadaddr: only respawn child when bad addr breaks
system call
* core-version: define EQUAL_GNUC for all compiler times
* stress-radixsort: remove array size specifiers to fix tcc
build failures
* core-builtin: add shim wrapper for __builtin_assume_aligned()
* core-cache: add missing tab to clean up \ alignments
* stress-vecshuf: remove redundant variables total_ops and
total_bytes
* stress-numa: Fix spelling mistake in comment
* stress-memthrash: remove trailing space at end of line
-------------------------------------------------------------------
Thu Dec 14 13:38:12 UTC 2023 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.17.3
Changes since 0.16.4
* https://github.com/ColinIanKing/stress-ng/compare/V0.16.04...V0.17.03
-------------------------------------------------------------------
Wed Aug 30 13:23:37 UTC 2023 - Andrea Manzini <andrea.manzini@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package stress-ng
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2015-2023, Martin Hauke <mardnh@gmx.de>
#
# All modifications and additions to the file contributed by third parties
@ -17,17 +17,21 @@
#
%bcond_without apparmor
Name: stress-ng
Version: 0.16.04
Version: 0.17.04
Release: 0
Summary: Tool to load and stress a computer
License: GPL-2.0-only
Group: System/Benchmark
URL: https://github.com/ColinIanKing/stress-ng
Source: https://github.com/ColinIanKing/stress-ng/archive/refs/tags/V%{version}.tar.gz
Source: https://github.com/ColinIanKing/stress-ng/archive/refs/tags/V%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: keyutils-devel
BuildRequires: libaio-devel
%if %{with apparmor}
BuildRequires: libapparmor-devel
%endif
BuildRequires: libattr-devel
BuildRequires: libbsd-devel
BuildRequires: libcap-devel