|
@@ -694,8 +694,7 @@ class Benchmarker:
|
|
############################################################
|
|
############################################################
|
|
def __stop_test(self, ppid, out):
|
|
def __stop_test(self, ppid, out):
|
|
try:
|
|
try:
|
|
- subprocess.check_call(['pkill', '-9', '-P', str(ppid)], stderr=out, stdout=out)
|
|
|
|
- subprocess.check_call(['kill', '-9', str(ppid)], stderr=out, stdout=out)
|
|
|
|
|
|
+ subprocess.check_call(['pkill', '-P', str(ppid)], stderr=out, stdout=out)
|
|
retcode = 0
|
|
retcode = 0
|
|
except Exception:
|
|
except Exception:
|
|
retcode = 1
|
|
retcode = 1
|