X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FINTERP_KERNELTest%2FTestInterpKernelUtils.cxx;h=b0ee27d2413a3cf9c89932875c76b1e581715198;hb=c4551c56aa89896595842e5b41b048044681b4e8;hp=262699a35a47a40430e8388acdb5a3f076f225de;hpb=1ff18bfcccb60eb7954f23a427024379f70eb3a9;p=tools%2Fmedcoupling.git diff --git a/src/INTERP_KERNELTest/TestInterpKernelUtils.cxx b/src/INTERP_KERNELTest/TestInterpKernelUtils.cxx index 262699a35..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 @@ -21,37 +21,44 @@ #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 = ""; - bool good = false; - 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); + std::ifstream my_file(resourceFile.c_str()); if (my_file.good()) - good = true; + return resourceFile; } - if (!good) + // else + char * tmp_c = getcwd(NULL, 0); + resourceFile = tmp_c; + free(tmp_c); + resourceFile += "/"; + for(int i=0; i