From 1b0033dac6e1044ee276d82d5e08bab78c99ef8b Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 18 Mar 2003 03:07:39 +0000 Subject: Decode waitstatus values when a command fails. (This used to be commit e1baab1ee04b27447445351d0d88b0c02a5fa85d) --- source3/stf/comfychair.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source3/stf') diff --git a/source3/stf/comfychair.py b/source3/stf/comfychair.py index d7e23efc10..8ff7726955 100644 --- a/source3/stf/comfychair.py +++ b/source3/stf/comfychair.py @@ -1,6 +1,7 @@ #! /usr/bin/env python # Copyright (C) 2002, 2003 by Martin Pool +# Copyright (C) 2003 by Tim Potter # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -20,6 +21,7 @@ """comfychair: a Python-based instrument of software torture. Copyright (C) 2002, 2003 by Martin Pool +Copyright (C) 2003 by Tim Potter This is a test framework designed for testing programs written in Python, or (through a fork/exec interface) any other language. @@ -163,9 +165,10 @@ why.""" ("%s terminated with signal %d", cmd, os.WTERMSIG(waitstatus)) rc = os.WEXITSTATUS(waitstatus) self.test_log = self.test_log + ("""Run command: %s -Wait status: %#x +Wait status: %#x (exit code %d, signal %d) Output: -%s""" % (cmd, waitstatus, output)) +%s""" % (cmd, waitstatus, os.WEXITSTATUS(waitstatus), os.WTERMSIG(waitstatus), + output)) if skip_on_noexec and rc == 127: # Either we could not execute the command or the command # returned exit code 127. According to system(3) we can't -- cgit