Log cgroup RAM limits

This commit is contained in:
Henry Mercer 2023-09-18 12:43:52 +01:00
parent 253d9cf358
commit 379f89dc53
12 changed files with 32 additions and 19 deletions

View file

@ -93,7 +93,7 @@ for (const {
test("getMemoryFlag() throws if the ram input is < 0 or NaN", async (t) => {
for (const input of ["-1", "hello!"]) {
t.throws(() => util.getMemoryFlag(input));
t.throws(() => util.getMemoryFlag(input, getRunnerLogger(true)));
}
});