X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9fb3282530db28f7bef2fdf747af3c185b1bb079..a57327d86b9fb16acacc71a3359817acd2a2816b:/teshsuite/mc/dwarf-expression/dwarf-expression.cpp diff --git a/teshsuite/mc/dwarf-expression/dwarf-expression.cpp b/teshsuite/mc/dwarf-expression/dwarf-expression.cpp index f059b2c058..e38b70ad0c 100644 --- a/teshsuite/mc/dwarf-expression/dwarf-expression.cpp +++ b/teshsuite/mc/dwarf-expression/dwarf-expression.cpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2014-2015. 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,18 +7,21 @@ #undef NDEBUG #endif -#include -#include -#include +#include "src/mc/mc_private.hpp" -#include "src/mc/mc_private.h" +#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/Process.hpp" -#include "src/mc/Type.hpp" -#include "src/mc/ObjectInformation.hpp" -#include "src/mc/Variable.hpp" +#include +#include +#include +#include -static simgrid::mc::Process* process; +static std::default_random_engine rnd_engine; + +static simgrid::mc::RemoteClient* process; static uintptr_t eval_binary_operation( @@ -33,11 +35,9 @@ uintptr_t eval_binary_operation( ops[2].atom = op; simgrid::dwarf::ExpressionStack stack; - try { simgrid::dwarf::execute(ops, 3, state, stack); - } - catch(std::runtime_error& e) { + } catch (const simgrid::dwarf::evaluation_error&) { fprintf(stderr,"Expression evaluation error"); } @@ -51,17 +51,20 @@ void basic_test(simgrid::dwarf::ExpressionContext const& state) { Dwarf_Op ops[60]; - uintptr_t a = rand(); - uintptr_t b = rand(); + uintptr_t a = rnd_engine(); + uintptr_t b = rnd_engine(); simgrid::dwarf::ExpressionStack stack; + bool caught_ex = false; try { ops[0].atom = DW_OP_drop; simgrid::dwarf::execute(ops, 1, state, stack); - fprintf(stderr,"Exception expected"); + } catch (const simgrid::dwarf::evaluation_error&) { + caught_ex = true; } - catch(simgrid::dwarf::evaluation_error& e) {} + if (not caught_ex) + fprintf(stderr, "Exception expected"); ops[0].atom = DW_OP_lit21; simgrid::dwarf::execute(ops, 1, state, stack); @@ -119,8 +122,7 @@ void basic_test(simgrid::dwarf::ExpressionContext const& state) { assert(stack.top() == a); assert(stack.top(1) == b); - } - catch(std::runtime_error& e) { + } catch (const simgrid::dwarf::evaluation_error&) { fprintf(stderr,"Expression evaluation error"); } } @@ -142,14 +144,13 @@ void test_deref(simgrid::dwarf::ExpressionContext const& state) { assert(stack.size() == 1); assert(stack.top() == foo); - } - catch(std::runtime_error& e) { + } catch (const simgrid::dwarf::evaluation_error&) { fprintf(stderr,"Expression evaluation error"); } } int main(int argc, char** argv) { - process = new simgrid::mc::Process(getpid(), -1); + process = new simgrid::mc::RemoteClient(getpid(), -1); process->init(); simgrid::dwarf::ExpressionContext state; @@ -158,26 +159,26 @@ int main(int argc, char** argv) { basic_test(state); for(int i=0; i!=100; ++i) { - uintptr_t a = rand(); - uintptr_t b = rand(); + uintptr_t a = rnd_engine(); + uintptr_t b = rnd_engine(); assert(eval_binary_operation(state, DW_OP_plus, a, b) == (a + b)); } for(int i=0; i!=100; ++i) { - uintptr_t a = rand(); - uintptr_t b = rand(); + uintptr_t a = rnd_engine(); + uintptr_t b = rnd_engine(); assert(eval_binary_operation(state, DW_OP_or, a, b) == (a | b)); } for(int i=0; i!=100; ++i) { - uintptr_t a = rand(); - uintptr_t b = rand(); + uintptr_t a = rnd_engine(); + uintptr_t b = rnd_engine(); assert(eval_binary_operation(state, DW_OP_and, a, b) == (a & b)); } for(int i=0; i!=100; ++i) { - uintptr_t a = rand(); - uintptr_t b = rand(); + uintptr_t a = rnd_engine(); + uintptr_t b = rnd_engine(); assert(eval_binary_operation(state, DW_OP_xor, a, b) == (a ^ b)); }