X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..a57327d86b9fb16acacc71a3359817acd2a2816b:/teshsuite/mc/dwarf/dwarf.cpp diff --git a/teshsuite/mc/dwarf/dwarf.cpp b/teshsuite/mc/dwarf/dwarf.cpp index c1eb4fa0d9..da8102fef5 100644 --- a/teshsuite/mc/dwarf/dwarf.cpp +++ b/teshsuite/mc/dwarf/dwarf.cpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2014-2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2014-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. */ @@ -8,34 +7,28 @@ #undef NDEBUG #endif -#include -#include - #include #include "mc/datatypes.h" #include "src/mc/mc_private.hpp" -#include "src/mc/ObjectInformation.hpp" -#include "src/mc/Type.hpp" -#include "src/mc/Variable.hpp" +#include "src/mc/inspect/ObjectInformation.hpp" +#include "src/mc/inspect/Type.hpp" +#include "src/mc/inspect/Variable.hpp" #include "src/mc/remote/RemoteClient.hpp" -int test_some_array[4][5][6]; +#include +#include + +// Test broken with multi-dimensional arrays. See https://sourceware.org/bugzilla/show_bug.cgi?id=22546 +// int test_some_array[4][5][6]; +int test_some_array[4 * 5 * 6]; struct some_struct { int first; int second[4][5]; }; some_struct test_some_struct; -static simgrid::mc::Type* find_type_by_name(simgrid::mc::ObjectInformation* info, const char* name) -{ - for (auto& entry : info->types) - if(entry.second.name == name) - return &entry.second; - return nullptr; -} - static simgrid::mc::Frame* find_function_by_name( simgrid::mc::ObjectInformation* info, const char* name) { @@ -78,11 +71,11 @@ static void test_local_variable(simgrid::mc::ObjectInformation* info, const char xbt_assert(location.address() == address, "Bad resolution of local variable %s of %s", variable, function); } -static simgrid::mc::Variable* test_global_variable(simgrid::mc::RemoteClient& process, - simgrid::mc::ObjectInformation* info, const char* name, - void* address, long byte_size) +static const simgrid::mc::Variable* test_global_variable(simgrid::mc::RemoteClient& process, + simgrid::mc::ObjectInformation* info, const char* name, + void* address, long byte_size) { - simgrid::mc::Variable* variable = info->find_variable(name); + const simgrid::mc::Variable* variable = info->find_variable(name); xbt_assert(variable, "Global variable %s was not found", name); xbt_assert(variable->name == name, "Name mismatch for %s", name); xbt_assert(variable->global, "Variable %s is not global", name); @@ -92,7 +85,7 @@ static simgrid::mc::Variable* test_global_variable(simgrid::mc::RemoteClient& pr auto i = process.binary_info->types.find(variable->type_id); xbt_assert(i != process.binary_info->types.end(), "Missing type for %s", name); simgrid::mc::Type* type = &i->second; - xbt_assert(type->byte_size = byte_size, "Byte size mismatch for %s", name); + xbt_assert(type->byte_size == byte_size, "Byte size mismatch for %s", name); return variable; } @@ -119,7 +112,7 @@ int main(int argc, char** argv) { SIMIX_global_init(&argc, argv); - simgrid::mc::Variable* var; + const simgrid::mc::Variable* var; simgrid::mc::Type* type; simgrid::mc::RemoteClient process(getpid(), -1); @@ -159,5 +152,5 @@ int main(int argc, char** argv) s_foo my_foo = {0}; test_type_by_name(process, my_foo); - _exit(0); + return 0; }