diff options
author | aqua <aqua@iserlohn-fortress.net> | 2023-03-05 14:38:54 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2023-03-05 14:38:54 +0200 |
commit | 787c1a6016dd2fdb51f20fcb5ca0ac5e461892d6 (patch) | |
tree | 7db9f5102adc3d50ca85a8175ce67465256b8908 /src | |
parent | Add TARGETBIN and TARGETLIB rules (diff) | |
download | kernel-787c1a6016dd2fdb51f20fcb5ca0ac5e461892d6.tar.xz |
Move all tests next to the code they're testing
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 3 | ||||
-rw-r--r-- | src/sched/test_roundrobin.cc (renamed from src/tst/roundrobin.cc) | 0 | ||||
-rw-r--r-- | src/sched/test_taskqueue.cc (renamed from src/tst/taskqueue.cc) | 0 |
3 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index f9ab6fe..3a5d41b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,7 +8,8 @@ TARGETLIB += kernel kernel.SRCS := multiboot2.c mmap.c kernel.cpp mem/vmm.c kernel.OBJS := conf.h -TESTS += tst/taskqueue tst/roundrobin +TESTS += \ + sched/test_taskqueue sched/test_roundrobin include ../rules.mk diff --git a/src/tst/roundrobin.cc b/src/sched/test_roundrobin.cc index 1431788..1431788 100644 --- a/src/tst/roundrobin.cc +++ b/src/sched/test_roundrobin.cc diff --git a/src/tst/taskqueue.cc b/src/sched/test_taskqueue.cc index 217c44d..217c44d 100644 --- a/src/tst/taskqueue.cc +++ b/src/sched/test_taskqueue.cc |