summaryrefslogtreecommitdiff
path: root/tests/sys/vm/soxstack
AgeCommit message (Collapse)Author
2025-05-05tests: move some files to the tests packageLexi Winter
some test support libraries had escaped confinement and were found wandering around the utilities package: /usr/tests/lib/csu/dynamiclib/libh_csu.so /usr/tests/lib/libthr/dlopen/h_pthread_dlopen.so /usr/tests/lib/libthr/dlopen/h_pthread_dlopen.so.1 /usr/tests/sys/vm/stack/libsoxstack.so these aren't built using bsd.test.mk, so they don't get the default PACKAGE=tests option; set this by hand in their Makefiles to put them back where they belong. Reviewed by: manu, des, emaste Approved by: des (mentor) Differential Revision: https://reviews.freebsd.org/D50147
2024-07-15Remove residual blank line at start of MakefileWarner Losh
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
2024-05-08soxstack: slience 32-bit gcc warningBrooks Davis
Modern GCC complains when casting pointers to integers of a different size (even a larger one). Switch from uint64_t to uintptr_t which will always be the right size for a stack address instead of maybe being too big. Reviewed by: dchagin, emaste Differential Revision: https://reviews.freebsd.org/D45087
2023-08-16Remove $FreeBSD$: one-line sh patternWarner Losh
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-08soxstack: silence GCC warningEd Maste
Add parens around _STACK_FLAG_GROWS expression to fix GCC warning about arithmetic in operand of '|'. Sponsored by: The FreeBSD Foundation
2023-08-08tests: Add stack grows testsDmitry Chagin
Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D41320 MFC after: 2 weeks