# HG changeset patch # User Oleg Oshmyan # Date 1308574845 -10800 # Node ID aed52e3fa5a0ff2fb920aee5e26e5bc1e63af8e5 # Parent a79a58101eba5399328d32936427efe1b419175c Fixed crashing on stdio=False with _unix diff -r a79a58101eba -r aed52e3fa5a0 upreckon/testcases.py --- 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