Skip to content
Snippets Groups Projects
Commit 9a9028de authored by Julien Signoles's avatar Julien Signoles
Browse files

[e-acsl:tests] lint

parent b1a2bb67
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ int main(int argc, const char **argv) {
/* strcat */
OK(strcat(dest1, const_str)); // enough space in dest [ok]
// enough space in dest (concat with empty) [ok]:
OK(strcat(dest3, empty_str));
OK(strcat(dest3, empty_str));
ABRT(strcat(dest2, const_str)); // insufficient space in dest [abort]
ABRT(strcat(unalloc_str, const_str)); // unallocated in dest [abort]
ABRT(strcat(dest2, unalloc_str)); // unallocated in src [abort]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment