X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8329b8bddaa6c8ba188f1e90678d02464b4369c6..49b53eb334bc6f19b530603201d00bcc312bfd29:/src/surf/xml/surfxml_parseplatf.cpp diff --git a/src/surf/xml/surfxml_parseplatf.cpp b/src/surf/xml/surfxml_parseplatf.cpp index 59e24dbdcc..52019960a3 100644 --- a/src/surf/xml/surfxml_parseplatf.cpp +++ b/src/surf/xml/surfxml_parseplatf.cpp @@ -78,10 +78,8 @@ void parse_platform_file(const std::string& file) luaL_loadfile(L, cfile); // This loads the file without executing it. /* Run the script */ - if (lua_pcall(L, 0, 0, 0)) { - XBT_ERROR("FATAL ERROR:\n %s: %s\n\n", "Lua call failed. Error message:", lua_tostring(L, -1)); - xbt_die("Lua call failed. See Log"); - } + xbt_assert(lua_pcall(L, 0, 0, 0) == 0, "FATAL ERROR:\n %s: %s\n\n", "Lua call failed. Error message:", + lua_tostring(L, -1)); lua_close(L); return; #else