mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 10:03:10 -04:00
The igt testing suite is separated into tests and tools that target kms, memory management, and command submission. These tests are especially helpful for low-level reporting, transparent tracking of kernel changes, and efficient debugging of modern drm drivers. Reviewed by: diizzy, lwhsu, jrm Differential Revision: https://reviews.freebsd.org/D36213
14 lines
491 B
C
14 lines
491 B
C
--- lib/tests/igt_fork.c.orig 2022-08-31 20:00:01 UTC
|
|
+++ lib/tests/igt_fork.c
|
|
@@ -109,7 +109,11 @@ __noreturn static void subtest_leak(void)
|
|
__noreturn static void subtest_leak(void)
|
|
{
|
|
pid_t *children =
|
|
+#ifdef __linux__
|
|
mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
|
|
+#elif defined(__FreeBSD__)
|
|
+ mmap(0, 4096, PROT_WRITE | PROT_READ, MAP_SHARED | MAP_ANON, -1, 0);
|
|
+#endif
|
|
const int num_children = 4096 / sizeof(*children);
|
|
|
|
igt_subtest_init(fake_argc, fake_argv);
|