From ac993e1cf8ec4c55cbd1e80c7b94ac492d6dc4e8 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 6 Mar 2026 06:36:01 +0100 Subject: [FEAT] HeapMgr: Add LockDelegate to allocation calls, and re-introduce double-free prevention. [CHORE] FileMgr: Cleanup and tweaks. [CHORE] ABI: Update copyright year. Signed-off-by: Amlal El Mahrouss --- test/kernel_test/Makefile | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 test/kernel_test/Makefile (limited to 'test/kernel_test/Makefile') diff --git a/test/kernel_test/Makefile b/test/kernel_test/Makefile deleted file mode 100644 index c4057a5e..00000000 --- a/test/kernel_test/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -################################################## -# (c) Amlal El Mahrouss and NeKernel Authors, licensed under the Apache 2.0 license. -# This file is for kernel testing. -################################################## - -GCC=x86_64-w64-mingw32-g++ -Wl,-subsystem=17 -LIB=-L../../src/libSystem -lSystem -STD=-std=c++20 -DKT_TESTING_ENABLED -INCLUDE=-I../../src -I../../public -I../../public/frameworks/ -I../../ - -OBJ_FILES = \ - error.test.exe \ - print.test.exe \ - process.test.exe - -.PHONY: all -all: $(OBJ_FILES) - -%.exe: %.cc - @echo "==> Building test: $@" - $(GCC) $(LIB) $< \ - $(STD) $(INCLUDE) -o $(basename $<).exe \ No newline at end of file -- cgit v1.2.3