From: Cédric Aguerre Date: Tue, 24 Mar 2015 13:31:48 +0000 (+0100) Subject: update comment text X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b340e2739fa70141652f45c8591bcead3358140d;p=modules%2Fkernel.git update comment text --- diff --git a/bin/appliskel/salome_tester/salome_test_driver.py b/bin/appliskel/salome_tester/salome_test_driver.py index 92e93dfb2..ee468557b 100644 --- a/bin/appliskel/salome_tester/salome_test_driver.py +++ b/bin/appliskel/salome_tester/salome_test_driver.py @@ -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 #