judge: fix testlib exitcode

pull/468/head
undefined 2 years ago
parent d29bd22249
commit af91a6307d

@ -1,7 +1,7 @@
{
"name": "@hydrooj/hydrojudge",
"bin": "bin/hydrojudge.js",
"version": "3.1.10",
"version": "3.1.11",
"main": "package.json",
"author": "undefined <i@undefined.moe>",
"repository": "https://github.com/hydro-dev/Hydro.git",

@ -210,7 +210,7 @@ const checkers: Record<string, Checker> = new Proxy({
message: stderr,
};
}
if (status === STATUS.STATUS_RUNTIME_ERROR) {
if (status === STATUS.STATUS_RUNTIME_ERROR && !stderr?.trim()) {
return {
status: STATUS.STATUS_WRONG_ANSWER,
score: 0,

Loading…
Cancel
Save