make node:buffer,zlib,stream,fs exception checker clear (#20494)

This commit is contained in:
Meghan Denny
2025-06-25 17:36:08 -08:00
committed by GitHub
parent 5e0caa0aa4
commit f9712ce309
132 changed files with 1088 additions and 1453 deletions

View File

@@ -245,7 +245,7 @@ const shouldValidateExceptions = (() => {
}
skipArray = readFileSync(path, "utf-8")
.split("\n")
.filter(line => !line.startsWith("#"));
.filter(line => !line.startsWith("#") && line.length > 0);
}
return !(skipArray.includes(test) || skipArray.includes("test/" + test));
};