mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-15 11:45:54 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
16 lines
709 B
C
16 lines
709 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* List each unit test as selftest(name, function)
|
|
*
|
|
* The name is used as both an enum and expanded as igt__name to create
|
|
* a module parameter. It must be unique and legal for a C identifier.
|
|
*
|
|
* Tests are executed in order by igt/drm_buddy
|
|
*/
|
|
selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
|
|
selftest(buddy_alloc_limit, igt_buddy_alloc_limit)
|
|
selftest(buddy_alloc_range, igt_buddy_alloc_range)
|
|
selftest(buddy_alloc_optimistic, igt_buddy_alloc_optimistic)
|
|
selftest(buddy_alloc_pessimistic, igt_buddy_alloc_pessimistic)
|
|
selftest(buddy_alloc_smoke, igt_buddy_alloc_smoke)
|
|
selftest(buddy_alloc_pathological, igt_buddy_alloc_pathological)
|