X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/26ba5558401021cb3854f2f1a5ffedd7044f6823..237fd22b56db7d1c67360c37559ce3aab16a002d:/teshsuite/mc/dwarf/dwarf.cpp diff --git a/teshsuite/mc/dwarf/dwarf.cpp b/teshsuite/mc/dwarf/dwarf.cpp index d215a19b17..35208b3d6f 100644 --- a/teshsuite/mc/dwarf/dwarf.cpp +++ b/teshsuite/mc/dwarf/dwarf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2021. 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. */ @@ -15,14 +15,19 @@ #include "src/mc/inspect/ObjectInformation.hpp" #include "src/mc/inspect/Type.hpp" #include "src/mc/inspect/Variable.hpp" -#include "src/mc/remote/RemoteClient.hpp" +#include "src/mc/remote/RemoteProcess.hpp" #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]; +#include +#if _ELFUTILS_VERSION < 171 +// Elder elfutils/libdw broken with multi-dimensional arrays. See https://sourceware.org/bugzilla/show_bug.cgi?id=22546 int test_some_array[4 * 5 * 6]; +#else +int test_some_array[4][5][6]; +#endif + struct some_struct { int first; int second[4][5]; @@ -72,8 +77,8 @@ 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 const simgrid::mc::Variable* test_global_variable(const simgrid::mc::RemoteClient& process, - const simgrid::mc::ObjectInformation* info, const char* name, +static const simgrid::mc::Variable* test_global_variable(const simgrid::mc::RemoteProcess& process, + simgrid::mc::ObjectInformation* info, const char* name, void* address, long byte_size) { const simgrid::mc::Variable* variable = info->find_variable(name); @@ -104,7 +109,7 @@ struct s_foo { int i; }; -static void test_type_by_name(const simgrid::mc::RemoteClient& process, s_foo /*my_foo*/) +static void test_type_by_name(const simgrid::mc::RemoteProcess& process, s_foo /*my_foo*/) { assert(process.binary_info->full_types_by_name.find("struct s_foo") != process.binary_info->full_types_by_name.end()); } @@ -116,8 +121,8 @@ int main(int argc, char** argv) const simgrid::mc::Variable* var; simgrid::mc::Type* type; - simgrid::mc::RemoteClient process(getpid(), -1); - process.init(); + simgrid::mc::RemoteProcess process(getpid()); + process.init(nullptr, nullptr, nullptr, nullptr); test_global_variable(process, process.binary_info.get(), "some_local_variable", &some_local_variable, sizeof(int));