summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/alloc/allocate_and_core.cpp
blob: f0a0669eb427167a10befeb53b014f490c9beca9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/util/alloc.h>

using namespace vespalib::alloc;

int main(int argc, char *argv[]) {
    (void) argc;
    (void) argv;
    Alloc small(MMapAllocFactory::create(0x400000)); //4M
    memset(small.get(), 0x55, small.size());
    Alloc large(MMapAllocFactory::create(0x4000000)); //640M
    memset(large.get(), 0x66, large.size());
    assert(false);
}