MultiPLE-Evaluator / src /eval_pl.py
dongsheng's picture
Upload 48 files
41e79e2 verified
raw
history blame contribute delete
474 Bytes
from pathlib import Path
from src.safe_subprocess import run
def eval_script(path: Path):
r = run(["perl", path])
if r.timeout:
status = "Timeout"
elif r.exit_code != 0:
status = "Exception"
elif "ERROR" in r.stdout or "ERROR" in r.stderr:
status = "Exception"
else:
status = "OK"
return {
"status": status,
"exit_code": r.exit_code,
"stdout": r.stdout,
"stderr": r.stderr,
}