fix stupid bug
Some checks failed
memory-limit / Build judge (push) Successful in 17s
memory-limit / Linux / clang (push) Failing after 9s
memory-limit / Linux / gcc (push) Failing after 10s
memory-limit / Windows / clang (push) Failing after 11s
memory-limit / Windows / msvc (push) Failing after 14s

This commit is contained in:
2026-04-10 23:43:05 +03:00
parent e9f07dc47b
commit ca56aa5bc4

View File

@@ -19,7 +19,7 @@ group("within_limit") {
memory_limit = 256M
test("allocate_16mb") {
args = ["16"]
args = "16"
stdout = "ok 16\n"
}
}
@@ -29,7 +29,7 @@ group("exceeds_limit") {
memory_limit = 64M
test("allocate_256mb") {
args = ["256"]
args = "256"
// no stdout matcher: process is expected to be killed before it prints
}
}