X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/347b7da91424a1dab7edb42dd70cd897ab3bfbd6..eb9ea15d29ef9448d211b188b843f3483703d2c2:/tools/tesh/tesh.py diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 43fd9ffd45..ec68ede20c 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -39,8 +39,6 @@ if sys.version_info[0] == 3: else: raise "This program is expected to run with Python3 only" - - ############## # # Utilities @@ -98,6 +96,30 @@ except NameError: #py2 FileNotFoundError = OSError +############## +# +# Cleanup on signal +# +# + +# Global variable. Stores which process group should be killed (or None otherwise) +pgtokill = None + +def kill_process_group(pgid): + # print("Kill process group {}".format(pgid)) + try: + os.killpg(pgid, signal.SIGTERM) + except OSError: + # os.killpg failed. OK. Some subprocesses may still be running. + pass + +def signal_handler(signal, frame): + print("Caught signal {}".format(SIGNALS_TO_NAMES_DICT[signal])) + if pgtokill is not None: + kill_process_group(pgtokill) + tesh_exit(5) + + ############## # @@ -289,8 +311,15 @@ class Cmd(object): args = shlex.split(self.args) #print (args) + global pgtokill + try: proc = subprocess.Popen(args, bufsize=1, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True, preexec_fn=os.setsid) + try: + pgtokill = os.getpgid(proc.pid) + except OSError: + # os.getpgid failed. OK. No cleanup. + pass except FileNotFoundError: print("["+FileReader().filename+":"+str(self.linenumber)+"] Cannot start '"+args[0]+"': File not found") tesh_exit(3) @@ -302,9 +331,10 @@ class Cmd(object): cmdName = FileReader().filename+":"+str(self.linenumber) try: (stdout_data, stderr_data) = proc.communicate("\n".join(self.input_pipe), self.timeout) + pgtokill = None except subprocess.TimeoutExpired: print("Test suite `"+FileReader().filename+"': NOK (<"+cmdName+"> timeout after "+str(self.timeout)+" sec)") - os.killpg(os.getpgid(proc.pid), signal.SIGTERM) + kill_process_group(pgtokill) tesh_exit(3) if self.output_display: @@ -396,6 +426,8 @@ class Cmd(object): if __name__ == '__main__': + signal.signal(signal.SIGINT, signal_handler) + signal.signal(signal.SIGTERM, signal_handler) parser = argparse.ArgumentParser(description='tesh -- testing shell', add_help=True) group1 = parser.add_argument_group('Options') @@ -433,6 +465,8 @@ if __name__ == '__main__': re.compile("For details see https://github.com/google/sanitizers/issues/189"), re.compile("Python runtime initialized with LC_CTYPE=C .*"), re.compile("cmake: /usr/local/lib/libcurl.so.4: no version information available (required by cmake)"), # Seen on CircleCI + re.compile(".*mmap broken on FreeBSD, but dlopen+thread broken too. Switching to dlopen+raw contexts."), + re.compile(".*dlopen+thread broken on Apple and BSD. Switching to raw contexts."), ] TeshState().jenkins = True # This is a Jenkins build