Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use workaround only for versions of libdw known to be broken.
[simgrid.git] / teshsuite / mc / dwarf / dwarf.cpp
index 39739ca9a175f1c8923c32d8f902a1f67109e282..35208b3d6fa8077bf85046abd62ccd8c30e8bf51 100644 (file)
 #include <cassert>
 #include <cstring>
 
-// Test broken with multi-dimensional arrays. See https://sourceware.org/bugzilla/show_bug.cgi?id=22546
-// int test_some_array[4][5][6];
+#include <elfutils/version.h>
+#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];
@@ -117,7 +122,7 @@ int main(int argc, char** argv)
   simgrid::mc::Type* type;
 
   simgrid::mc::RemoteProcess process(getpid());
-  process.init();
+  process.init(nullptr, nullptr, nullptr, nullptr);
 
   test_global_variable(process, process.binary_info.get(), "some_local_variable", &some_local_variable, sizeof(int));