Skip to content

Commit 39a2a7d

Browse files
committed
mark bugs
1 parent 7404200 commit 39a2a7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/unit/memory/generic/test_memory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ CASE("os::mem::protect try to break stuff"){
440440

441441
CASE("os::mem::protect verify consistency"){
442442
using namespace util::literals;
443-
auto init_access = mem::Access::none;
443+
auto init_access = mem::Access::none; // FIXME: should probably be before and after mapping
444444

445445
if (__pml4 != nullptr) {
446446
printf("NOT NULL\n");

test/unit/memory/lstack/test_lstack_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ CASE("lstack::" STR(LSTACK_OPT) " allocate_back") {
527527
EXPECT(heap.bytes_allocated() == 0);
528528

529529

530-
// Deallocate all but last
530+
// Deallocate all but last // FIXME: this doesn't seem to do what it says
531531
std::vector<alloc::Allocation> allocs;
532532
size_t allocated = 0;
533533
for (int i = 0; i < chunks - 1; i++) {

0 commit comments

Comments
 (0)