PMM - alloc returns freed page

This commit is contained in:
2017-12-21 15:00:35 +01:00
parent 80cc165957
commit 776fd87862
2 changed files with 28 additions and 0 deletions

15
src/kernel/memory/pmm.tt Normal file
View File

@@ -0,0 +1,15 @@
// vim: ft=c
#include <ttest.h>
#include "pmm.c"
struct {
uint8_t data[PAGE_SIZE];
}__attribute__((packed)) mem[4];
TEST(alloc_returns_freed_page)
{
pmm_free(&mem[0]);
void *a = pmm_alloc();
ASSERT_EQ_PTR(a, &mem[0]);
}