X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/48eb2f1b9262fc74f527816c348ed2aa6efa9f65..678d046c18855ab111842cf3c4fd87343ee8f795:/teshsuite/xbt/mmalloc/mmalloc_test.cpp diff --git a/teshsuite/xbt/mmalloc/mmalloc_test.cpp b/teshsuite/xbt/mmalloc/mmalloc_test.cpp index 759f09e473..df92cf1302 100644 --- a/teshsuite/xbt/mmalloc/mmalloc_test.cpp +++ b/teshsuite/xbt/mmalloc/mmalloc_test.cpp @@ -1,11 +1,12 @@ -/* Copyright (c) 2012-2014, 2016-2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2012-2019. 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 "xbt/mmalloc.h" +#include "simgrid/Exception.hpp" #include "xbt.h" +#include "xbt/mmalloc.h" + #include #include #include @@ -14,14 +15,20 @@ #include #include -#include - XBT_LOG_NEW_DEFAULT_CATEGORY(test,"this test"); -#define BUFFSIZE 204800 -#define TESTSIZE 100 +constexpr int BUFFSIZE = 204800; +constexpr int TESTSIZE = 100; + #define size_of_block(i) (((i % 50)+1)* 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); +} + int main(int argc, char**argv) { xbt_mheap_t heapA = nullptr; @@ -68,7 +75,7 @@ int main(int argc, char**argv) mfree(heapA, pointers[i]); try { mfree(heapA, pointers[i]); - } catch(xbt_ex& e) { + } catch (const xbt_ex&) { gotit = true; } if (not gotit) @@ -80,13 +87,29 @@ int main(int argc, char**argv) bool gotit = false; try { mfree(heapA, pointers[i]); - } catch(xbt_ex& e) { + } catch (const xbt_ex&) { 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++) { + const std::vector> requests = { + {size_of_block(i) / 2, 0x77}, {size_of_block(i) * 2, 0xaa}, {1, 0xc0}, {0, 0}}; + pointers[i] = nullptr; + for (unsigned k = 0; k < requests.size(); ++k) { + size = requests[k].first; + pointers[i] = mrealloc(heapA, pointers[i], size); + if (k > 0) + check_block(static_cast(pointers[i]), requests[k - 1].second, + std::min(size, requests[k - 1].first)); + if (size > 0) + memset(pointers[i], requests[k].second, size); + } + } + XBT_INFO("Damnit, I cannot break mmalloc this time. That's SO disappointing."); return 0; }