删除spj留下的编译器输出文件

This commit is contained in:
virusdefender 2016-09-29 22:29:32 +08:00
parent a93a22357c
commit 2192073f21

View File

@ -41,6 +41,9 @@ class Compiler(object):
if error:
raise CompileError(error)
# 如果是spj的话, 不要在test_case文件夹中留下这个文件
os.remove(compiler_out)
raise CompileError("Compiler runtime error, info: %s" % json.dumps(result).decode("utf-8"))
return exe_path