X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2807fde4fd1f59c230d69a934634c5dfb77905f2..65f2d0ee3e36c86770abe9196990f0a40b4b8221:/tools/tesh/tesh.py diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 68a661eb64..5db0dcbc0c 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -296,7 +296,7 @@ class Cmd(object): tesh_exit(3) except OSError as osE: if osE.errno == 8: - osE.strerror += "\nOSError: [Errno 8] Executed scripts should start with shebang line (like #!/bin/sh)" + osE.strerror += "\nOSError: [Errno 8] Executed scripts should start with shebang line (like #!/usr/bin/env sh)" raise osE cmdName = FileReader().filename+":"+str(self.linenumber) @@ -414,6 +414,7 @@ if __name__ == '__main__': tesh_exit(1) if options.cd is not None: + print("[Tesh/INFO] change directory to " + options.cd) os.chdir(options.cd) if options.ignore_jenkins: @@ -431,7 +432,7 @@ if __name__ == '__main__': re.compile("For details see http://code.google.com/p/address-sanitizer/issues/detail\\?id=189"), re.compile("For details see https://github.com/google/sanitizers/issues/189"), re.compile("Python runtime initialized with LC_CTYPE=C .*"), - re.compile("^cmake: .*? no version information available (required by cmake)"), # Seen on CircleCI + re.compile("cmake: /usr/local/lib/libcurl.so.4: no version information available (required by cmake)"), # Seen on CircleCI ] TeshState().jenkins = True # This is a Jenkins build