diff options
Diffstat (limited to 'unittests/KDAlloc')
-rw-r--r-- | unittests/KDAlloc/allocate.cpp | 3 | ||||
-rw-r--r-- | unittests/KDAlloc/rusage.cpp | 6 | ||||
-rw-r--r-- | unittests/KDAlloc/sample.cpp | 3 |
3 files changed, 4 insertions, 8 deletions
diff --git a/unittests/KDAlloc/allocate.cpp b/unittests/KDAlloc/allocate.cpp index 895f8215..c691e114 100644 --- a/unittests/KDAlloc/allocate.cpp +++ b/unittests/KDAlloc/allocate.cpp @@ -23,8 +23,7 @@ int allocate_sample_test() { #else int main() { #endif - // initialize a factory and an associated allocator (using the location "0" - // gives an OS-assigned location) + // initialize a factory and an associated allocator (1 MiB and no quarantine) klee::kdalloc::AllocatorFactory factory(static_cast<std::size_t>(1) << 20, 0); klee::kdalloc::Allocator allocator = factory.makeAllocator(); diff --git a/unittests/KDAlloc/rusage.cpp b/unittests/KDAlloc/rusage.cpp index 453c5e5d..2a893d7d 100644 --- a/unittests/KDAlloc/rusage.cpp +++ b/unittests/KDAlloc/rusage.cpp @@ -35,10 +35,8 @@ std::size_t write_to_allocations(std::vector<void *> &allocations) { } TEST(KDAllocTest, Rusage) { - // initialize a factory and an associated allocator (using the location "0" - // gives an OS-assigned location) - klee::kdalloc::AllocatorFactory factory(static_cast<std::size_t>(1) << 30, - 0); // 1 GB + // initialize a factory and an associated allocator (1 GiB and no quarantine) + klee::kdalloc::AllocatorFactory factory(static_cast<std::size_t>(1) << 30, 0); klee::kdalloc::Allocator allocator = factory.makeAllocator(); std::vector<void *> allocations; diff --git a/unittests/KDAlloc/sample.cpp b/unittests/KDAlloc/sample.cpp index d4bed00b..365e7e21 100644 --- a/unittests/KDAlloc/sample.cpp +++ b/unittests/KDAlloc/sample.cpp @@ -20,8 +20,7 @@ int sample_test() { #else int main() { #endif - // initialize a factory and an associated allocator (using the location "0" - // gives an OS-assigned location) + // initialize a factory and an associated allocator (1 TiB and no quarantine) klee::kdalloc::AllocatorFactory factory(static_cast<std::size_t>(1) << 40, 0); klee::kdalloc::Allocator allocator = factory.makeAllocator(); |