Mercurial > ~astiob > upreckon > hgweb
changeset 177:aed52e3fa5a0 2.01
Fixed crashing on stdio=False with _unix
author | Oleg Oshmyan <chortos@inbox.lv> |
---|---|
date | Mon, 20 Jun 2011 16:00:45 +0300 |
parents | a79a58101eba |
children | 47ed593fee57 |
files | upreckon/testcases.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/upreckon/testcases.py Sat Jun 18 02:02:37 2011 +0100 +++ b/upreckon/testcases.py Mon Jun 20 16:00:45 2011 +0300 @@ -249,7 +249,7 @@ return case.validate(outfile) else: case.infile.copy(case.problem.config.inname) - call(case.problem.config.path, case=case, stdin=devnull, stdout=devnull, stderr=STDOUT) + call(case.problem.config.path, case=case, stdin=devnull, stdout=devnull, stderr=devnull) if config.globalconf.force_zero_exitcode and case.process.returncode or case.process.returncode < 0: raise NonZeroExitCode(case.process.returncode) case.has_called_back = True