X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..e5597052ce7ec4027dc2e32067338bfe5217395e:/teshsuite/xbt/mmalloc/mmalloc_test.cpp diff --git a/teshsuite/xbt/mmalloc/mmalloc_test.cpp b/teshsuite/xbt/mmalloc/mmalloc_test.cpp index 63007c6db0..c76ea464f9 100644 --- a/teshsuite/xbt/mmalloc/mmalloc_test.cpp +++ b/teshsuite/xbt/mmalloc/mmalloc_test.cpp @@ -1,12 +1,14 @@ -/* Copyright (c) 2012-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2012-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include "simgrid/Exception.hpp" +#include "simgrid/engine.h" +#include "src/xbt/mmalloc/mmalloc.h" #include "xbt.h" -#include "xbt/mmalloc.h" +#include #include #include #include @@ -14,6 +16,7 @@ #include #include #include +#include XBT_LOG_NEW_DEFAULT_CATEGORY(test,"this test"); @@ -25,21 +28,20 @@ constexpr int TESTSIZE = 100; static void check_block(const unsigned char* p, unsigned char b, int n) { for (int i = 0; i < n; i++) - if (p[i] != b) - xbt_die("value mismatch: %p[%d] = %#hhx, expected %#hhx", p, i, p[i], b); + xbt_assert(p[i] == b, "value mismatch: %p[%d] = %#hhx, expected %#hhx", p, i, p[i], b); } int main(int argc, char**argv) { xbt_mheap_t heapA = nullptr; - void *pointers[TESTSIZE]; - xbt_init(&argc,argv); + std::array pointers; + simgrid_init(&argc, argv); XBT_INFO("Allocating a new heap"); unsigned long mask = ~((unsigned long)xbt_pagesize - 1); - void *addr = (void*)(((unsigned long)sbrk(0) + BUFFSIZE) & mask); - heapA = xbt_mheap_new(-1, addr); - if (heapA == NULL) { + auto* addr = reinterpret_cast(((unsigned long)sbrk(0) + BUFFSIZE) & mask); + heapA = xbt_mheap_new(addr, 0); + if (heapA == nullptr) { perror("attach 1 failed"); fprintf(stderr, "bye\n"); exit(1); @@ -69,30 +71,9 @@ int main(int argc, char**argv) pointers[i] = mmalloc(heapA, size); } - XBT_INFO("free all blocks (each one twice, to check that double free are correctly caught)"); - for (i = 0; i < TESTSIZE; i++) { - bool gotit = false; + XBT_INFO("free all blocks"); + for (i = 0; i < TESTSIZE; i++) mfree(heapA, pointers[i]); - try { - mfree(heapA, pointers[i]); - } catch (const simgrid::Exception&) { - gotit = true; - } - if (not gotit) - xbt_die("FAIL: A double-free went undetected (for size:%d)",size_of_block(i)); - } - - XBT_INFO("free again all blocks (to really check that double free are correctly caught)"); - for (i = 0; i < TESTSIZE; i++) { - bool gotit = false; - try { - mfree(heapA, pointers[i]); - } catch (const simgrid::Exception&) { - gotit = true; - } - if (not gotit) - xbt_die("FAIL: A double-free went undetected (for size:%d)",size_of_block(i)); - } XBT_INFO("Let's try different codepaths for mrealloc"); for (i = 0; i < TESTSIZE; i++) {