Salome HOME
d82a4c273dd761f36cc7789c72df68519562e9ab
[modules/med.git] / src / INTERP_KERNELTest / TestInterpKernelUtils.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "TestInterpKernelUtils.hxx"
21
22 #include <cstdlib>
23
24 namespace INTERP_TEST
25 {
26   std::string getResourceFile( const std::string& filename )
27   {
28     std::string resourceFile = "";
29     
30     if ( getenv("top_srcdir") ) {
31       // we are in 'make test' step
32       resourceFile = getenv("top_srcdir");
33       resourceFile += "/resources/";
34     }
35     else if ( getenv("MED_ROOT_DIR") ) {
36       // use MED_ROOT_DIR env.var
37       resourceFile = getenv("MED_ROOT_DIR");
38       resourceFile += "/share/salome/resources/med/";
39     }
40     resourceFile += filename;
41     return resourceFile;
42   }
43
44 } // namespace INTERP_TEST