summaryrefslogtreecommitdiff
path: root/Ports/stress-ng
AgeCommit message (Collapse)Author
2022-08-24Ports: Update stress-ng to version 0.14.03Brian Gianforcaro
The stress-ng project appears to have addressed all the issues we had been patching, and thus we no longer need almost all of these patches.
2022-06-08Ports: Format patches without numbering, commit hash or version numberTim Schumacher
2022-03-18Ports/stress-ng: Update stress-ng to 0.13.12Brian Gianforcaro
This required updating a bunch of patches which had conflicts in the latest version. New Patches: - serenity: Add bogus O_NDELAY just to allow the port to compile - serenity: Disable nice() stress workload as we do not implement it - serenity: Disable prctl stressor on serenity
2022-01-16Ports: Regenerate stress-ng patchesAli Mohammad Pur
And autogenerate a readme. This fixes the one patch that wasn't made with git.
2022-01-06Ports/stress-ng: Remove patches which disable lchown testingBrian Gianforcaro
Serenity's LibC now supports lchown, so we no longer need to disable these stressors. The port can build and run cleanly without these patches.
2022-01-06Ports/stress-ng: Update to the latest version - v0.13.10Brian Gianforcaro
2021-12-28Ports: Update stress-ng port to 0.13.09Brian Gianforcaro
This change updates the port to the latest version, as part of that work I basically reported the application, as we have added a lot of LibC functionality which we were missing before. I've also updated the port to mark stressor's we don't support as nops, instead of trying to avoid compiling them at all. This will make the port much easier to maintain in the future.
2021-12-24Ports/stress-ng: Remove obsolete patchesDaniel Bertalan
The following features are now available in the system, making these patches unnecessary: - isblank() function - SIGSTKSZ constant - MS_SYNC and MS_ASYNC msync() flags - EDQUOT errno constant
2021-10-05Ports: Make array-like settings actual arraysTim Schumacher
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
2021-08-13Ports/stress-ng: Remove custom pause function from patchKenneth Myhra
This removes the custom pause function in patch so that we can use our own LibC pause function.
2021-05-09Ports: Remove obsolete patches for stress-ngGunnar Beutner
2021-05-09Ports: Remove obsolete patches for stress-ngGunnar Beutner
2021-04-28Kernel+LibC: Implement the socketpair() syscallGunnar Beutner
2021-04-25Ports: Update checksums to use the SHA256 algorithmGunnar Beutner
2021-04-20Ports: Improve consistency and quality of portsPanagiotis Vasilopoulos
- Replaced /Root with - Improved documentation. - Removed a few typos. - Replaced with - Added brackets in some cases. Most of the changes were reviewed and applied manually.
2021-04-16Ports: Add auth_type verification to all package.sh filesBrendan Coles
2021-04-16Ports: Make sure ports are installed into /usr/localGunnar Beutner
2021-04-14Ports: Fix building the stress-ng portGunnar Beutner
2021-03-13Ports: Remove redundant 'workdir' entriesLinus Groh
2021-03-11Ports: Replace hardcoded Build/ paths with SERENITY_BUILD_DIRLinus Groh
Fixes #5710.
2021-02-07Ports: Fix linking of the stress-ng portBrian Gianforcaro
2021-01-23Ports: Clean up some package.sh scriptsLinus Groh
- Remove superfluous function overrides and use makeopts instead - Remove superfluous installopts - Use run rather than cd'ing manually - Ensure empty line between functions
2021-01-22Meta: Get building on NixOS (#5005)Jonathan Turner
2021-01-17Ports: Rename a few .diff files to .patchLinus Groh
Let's keep things consistent, .diff is the name we use pretty much everywhere. Also tweak the glob in .port_includes.sh to be 'patches/*.patch' rather than just 'patches/*'.
2020-12-21Ports: Add initial stress-ng port to find bugs in serenityBrian Gianforcaro
This is a very WIP port bringing stress-ng to SerenityOS. stress-ng is great at doing multi-workload stress testing, this allows it to find unique and interesting intermixed pairs of stressful operations which cause bugs. This initial port just rips out an non applicable functionality in order to get the port to compile.