Salome HOME
launchConfigureParser.py: Setup gui log file via environment variable.
[modules/kernel.git] / src / Launcher / BatchTest.cxx
index d81ef8a04b07510118e60e94c5636ec773ea1bd0..ff6b169144e4b7d68aab25a967de17c1f896497a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2017  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -172,13 +172,13 @@ BatchTest::test_filecopy()
     return result;
   }
 
-  // Writing into the tempory file
+  // Writing into the temporary file
   command = "echo Hello > " +  _test_filename;
   status = system(command.c_str());
   if(status) {
     std::ostringstream oss;
     oss << status;
-    result += "Error in creating tempory file ! status = ";
+    result += "Error in creating temporary file ! status = ";
     result += oss.str();
     return result;
   }
@@ -435,7 +435,7 @@ BatchTest::test_jobsubmit_simple()
   file_normal.close();
   if (normal_input != "Bonjour")
   {
-    result += "error from simple ouput file ! waiting for Bonjour and get : " + normal_input;
+    result += "error from simple output file ! waiting for Bonjour and get : " + normal_input;
     return result;
   }
   std::string error_input;
@@ -663,7 +663,7 @@ BatchTest::test_jobsubmit_mpi()
   file_normal.close();
   if (!test_ok)
   {
-    result += "error from mpi ouput file ! waiting for HELLO MPI please watch /tmp/" + _date + "_mpi_output.log file";
+    result += "error from mpi output file ! waiting for HELLO MPI please watch /tmp/" + _date + "_mpi_output.log file";
     return result;
   }
   result = "OK";