X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FINTERP_KERNELTest%2FTestInterpKernelUtils.cxx;h=b0ee27d2413a3cf9c89932875c76b1e581715198;hb=c4551c56aa89896595842e5b41b048044681b4e8;hp=5c42053e6cadc4ebfc6de2245e5161b27d7d4315;hpb=56e7b97b6270ad0b2d523070f937e0b8ebae0d30;p=tools%2Fmedcoupling.git diff --git a/src/INTERP_KERNELTest/TestInterpKernelUtils.cxx b/src/INTERP_KERNELTest/TestInterpKernelUtils.cxx index 5c42053e6..b0ee27d24 100644 --- a/src/INTERP_KERNELTest/TestInterpKernelUtils.cxx +++ b/src/INTERP_KERNELTest/TestInterpKernelUtils.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -18,27 +18,49 @@ // #include "TestInterpKernelUtils.hxx" +#include "InterpKernelException.hxx" #include +#ifdef WIN32 +#include +#define getcwd _getcwd +#else #include +#endif +#include +#include namespace INTERP_TEST { - std::string getResourceFile( const std::string& filename ) + std::string getResourceFile( const std::string& filename, int levelUp) { std::string resourceFile = ""; - if ( getenv("MEDCOUPLING_ROOT_DIR") ) { // use MEDCOUPLING_ROOT_DIR env.var resourceFile = getenv("MEDCOUPLING_ROOT_DIR"); resourceFile += "/share/resources/med/"; + resourceFile += filename; + std::ifstream my_file(resourceFile.c_str()); + if (my_file.good()) + return resourceFile; } - else { - resourceFile = get_current_dir_name(); - resourceFile += "/../../resources/"; - } - + // else + char * tmp_c = getcwd(NULL, 0); + resourceFile = tmp_c; + free(tmp_c); + resourceFile += "/"; + for(int i=0; i