Complete Core
Some checks failed
CI / build-linux-and-wasm (x64-linux) (push) Has been cancelled

This commit is contained in:
2026-01-25 18:26:59 +05:30
parent cfa0759133
commit 601b573983
51 changed files with 2110 additions and 4778 deletions

View File

@ -192,7 +192,7 @@ auto test_multi_line() -> bool {
bool found_a = false;
bool found_b = false;
IA_UNUSED const auto res =
const auto res =
ProcessOps::spawn_process_sync(cmd, arg, [&](StringView line) {
line_count++;
if (line.find("LineA") != String::npos) {
@ -202,6 +202,7 @@ auto test_multi_line() -> bool {
found_b = true;
}
});
IAT_CHECK(res.has_value());
IAT_CHECK(found_a);
IAT_CHECK(found_b);