tests: move some files to the tests packagesome test support libraries had escaped confinement and were foundwandering around the utilities package: /usr/tests/lib/csu/dynamiclib/libh_csu.so /u
tests: move some files to the tests packagesome test support libraries had escaped confinement and were foundwandering 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.sothese aren't built using bsd.test.mk, so they don't get the defaultPACKAGE=tests option; set this by hand in their Makefiles to put themback where they belong.Reviewed by: manu, des, emasteApproved by: des (mentor)Differential Revision: https://reviews.freebsd.org/D50147
show more ...
Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
soxstack: slience 32-bit gcc warningModern GCC complains when casting pointers to integers of a differentsize (even a larger one). Switch from uint64_t to uintptr_t which willalways be the right
soxstack: slience 32-bit gcc warningModern GCC complains when casting pointers to integers of a differentsize (even a larger one). Switch from uint64_t to uintptr_t which willalways be the right size for a stack address instead of maybe being toobig.Reviewed by: dchagin, emasteDifferential Revision: https://reviews.freebsd.org/D45087
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
soxstack: silence GCC warningAdd parens around _STACK_FLAG_GROWS expression to fix GCC warning aboutarithmetic in operand of '|'.Sponsored by: The FreeBSD Foundation
tests: Add stack grows testsReviewed by: kibDifferential Revision: https://reviews.freebsd.org/D41320MFC after: 2 weeks