X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDRO_tests%2Ftest_HYDROData_Main.cxx;h=15ea61a6bbbd1cb3b5d4a388a2045ec8110eb468;hb=eac08495379067b7417f2856e174b4f1ae80e538;hp=3c41a03228bfcfb5d1bd4ce3cb36f86e562df924;hpb=d3b5be21469d84b315ac0428753244ddb6c995a3;p=modules%2Fhydro.git diff --git a/src/HYDRO_tests/test_HYDROData_Main.cxx b/src/HYDRO_tests/test_HYDROData_Main.cxx index 3c41a032..15ea61a6 100644 --- a/src/HYDRO_tests/test_HYDROData_Main.cxx +++ b/src/HYDRO_tests/test_HYDROData_Main.cxx @@ -35,10 +35,13 @@ #ifdef WIN32 QString REF_DATA_PATH = qgetenv( "HYDRO_ROOT_DIR" ) + "/bin/salome/test/HYDRO"; +QString TMP_DIR = QDir::tempPath(); #else -QString REF_DATA_PATH = qgetenv( "HYDRO_ROOT_DIR" ) + "/bin/salome/test/HYDRO/HYDRO"; +QString REF_DATA_PATH = qgetenv( "HYDRO_ROOT_DIR" ) + "/bin/salome/test/HYDRO"; +QString TMP_DIR = qgetenv( "HYDRO_ROOT_DIR" ) + "/test_ref"; #endif + int MAIN_W = 800, MAIN_H = 600; int main( int argc, char* argv[] ) @@ -47,6 +50,8 @@ int main( int argc, char* argv[] ) SUIT_Session aSession; aSession.startApplication("std"); + QDir().mkdir( TMP_DIR ); + OCCViewer_ViewFrame* aWindow = TestViewer::viewWindow(); aWindow->setGeometry( 400, 100, MAIN_W, MAIN_H ); @@ -78,7 +83,7 @@ int main( int argc, char* argv[] ) #ifdef WIN32 QString aPath = qgetenv( "HYDRO_SRC_DIR" ) + "/src/tests.cfg"; #else - QString aPath = "/tmp/hydro/tests.cfg"; + QString aPath = qgetenv( "HYDRO_ROOT_DIR" ) + "/tests.cfg"; #endif runner.Load( aPath.toStdString() ); runner.addTest( registry.makeTest() );