]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[tests] Remove prehistoric umalloc() test code
authorMichael Brown <mcb30@ipxe.org>
Thu, 15 May 2025 14:46:02 +0000 (15:46 +0100)
committerMichael Brown <mcb30@ipxe.org>
Thu, 15 May 2025 14:47:08 +0000 (15:47 +0100)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/tests/umalloc_test.c [deleted file]

diff --git a/src/tests/umalloc_test.c b/src/tests/umalloc_test.c
deleted file mode 100644 (file)
index 1a32a05..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <stdio.h>
-#include <ipxe/umalloc.h>
-#include <ipxe/io.h>
-
-void umalloc_test ( void ) {
-       struct memory_map memmap;
-       void *bob;
-       void *fred;
-
-       printf ( "Before allocation:\n" );
-       get_memmap ( &memmap );
-
-       bob = umalloc ( 1234 );
-       bob = urealloc ( bob, 12345 );
-       fred = umalloc ( 999 );
-
-       printf ( "After allocation:\n" );
-       get_memmap ( &memmap );
-
-       ufree ( bob );
-       ufree ( fred );
-
-       printf ( "After freeing:\n" );
-       get_memmap ( &memmap );
-}