xaizek / stic (License: MIT) (since 2018-12-07)
Simple Tests In C with optional automatic test registration in C.
Commit 67bbc0a1a978d4608e31128057afbe3b6f41e59d

Apply patch for stic/stic.c to fix buffer overflow
Author: Linux-Fan, Ma_Sys.ma
Author date (UTC): 2018-04-11 16:35
Committer name: xaizek
Committer date (UTC): 2018-04-20 13:10
Parent(s): 49fb7f4af25094e504467c73d0e6480c037e1906
Signing key: 99DC5E4DB05F6BE2
Tree: 6d97fb24e0df205728f636d0200de731d20b7413
File Lines added Lines deleted
src/stic.c 1 1
File src/stic.c changed (mode: 100644) (index d9a4238..a5cff30)
... ... int run_tests(stic_void_void tests)
537 537 } }
538 538
539 539 if(stic_is_display_only() || stic_machine_readable) return 1; if(stic_is_display_only() || stic_machine_readable) return 1;
540 sprintf(version, "stic v%s%s%s", STIC_VERSION,
540 snprintf(version, sizeof(version), "stic v%s%s%s", STIC_VERSION,
541 541 (stic_suite_name[0] == '\0' ? "" : " :: "), stic_suite_name); (stic_suite_name[0] == '\0' ? "" : " :: "), stic_suite_name);
542 542 printf("\n"); printf("\n");
543 543 stic_header_printer(version, stic_screen_width, '='); stic_header_printer(version, stic_screen_width, '=');
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/stic

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/stic

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master