test: add intentional test failures to verify CI detection
Some checks failed
CI Code / Check spelling (pull_request) Successful in 22s
CI Code / Check coding style (pull_request) Successful in 36s
CI Code / Linux (debian) (pull_request) Failing after 3m5s
CI Code / Linux (ubuntu) (pull_request) Failing after 3m6s
CI Code / Linux (arch) (pull_request) Failing after 3m12s
CI Code / Code Coverage (pull_request) Successful in 15m42s

This commit is contained in:
2026-01-29 14:56:38 +03:00
parent 6c5c523a1a
commit ef673c2527
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ ping_server(void **state)
prof_input("/ping");
prof_timeout(10);
assert_true(prof_output_regex("Pinged server"));
assert_true(prof_output_regex("INTENTIONAL FAILURE"));
prof_timeout_reset();
}

View File

@@ -12,7 +12,7 @@ replace_one_substr(void** state)
char* result = str_replace(string, sub, new);
assert_string_equal("it was a string", result);
assert_string_equal("INTENTIONAL FAILURE", result);
free(result);
}