From a116962a4392c7d6ef9c6c8d095e4d429bec0b10 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 26 Mar 2014 16:45:06 +1100 Subject: tester: The process returns an exit code not an errno. --- tester/rt/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tester') diff --git a/tester/rt/config.py b/tester/rt/config.py index d426026..7bfb157 100644 --- a/tester/rt/config.py +++ b/tester/rt/config.py @@ -111,7 +111,7 @@ class file(config.file): self._timeout)) if ec > 0: self._lock() - self._error('execute failed: %s: %s' % (' '.join(data), os.strerror(ec))) + self._error('execute failed: %s: exit-code:%d' % (' '.join(data), ec)) self._unlock() if self.console: self.console.close() -- cgit v1.2.3