]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
update comment text agr/salome_tests2
authorCédric Aguerre <cedric.aguerre@edf.fr>
Tue, 24 Mar 2015 13:31:48 +0000 (14:31 +0100)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Tue, 24 Mar 2015 13:31:48 +0000 (14:31 +0100)
bin/appliskel/salome_tester/salome_test_driver.py

index 92e93dfb23d80720b2e87a84b4fa566bc4e4a8e5..ee468557b3643d9167c4e2ddf273841c7248a087 100644 (file)
@@ -32,7 +32,9 @@ def runTest(command):
   p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
   out, err = p.communicate()
   res = p.returncode
-
+  # About res value:
+  # A negative value -N indicates that the child was terminated by signal N (Unix only).
+  # On Unix, the value 11 generally corresponds to a segmentation fault.
   return res, out, err
 #