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

Don't capitalize stic label in test's output
Author: xaizek
Author date (UTC): 2017-09-03 12:13
Committer name: xaizek
Committer date (UTC): 2017-09-03 17:16
Parent(s): dbc3fe4639d5bd81e1fbeb190e1e90e50fd3227d
Signing key: 99DC5E4DB05F6BE2
Tree: d2b7d0a11f7945b22eb979573d52cbe6c51a5aaa
File Lines added Lines deleted
src/stic.c 1 1
File src/stic.c changed (mode: 100644) (index b6351f1..f6ce495)
... ... int run_tests(stic_void_void tests)
521 521 } }
522 522
523 523 if(stic_is_display_only() || stic_machine_readable) return 1; if(stic_is_display_only() || stic_machine_readable) return 1;
524 sprintf(version, "STIC v%s%s%s", STIC_VERSION,
524 sprintf(version, "stic v%s%s%s", STIC_VERSION,
525 525 (stic_suite_name[0] == '\0' ? "" : " :: "), stic_suite_name); (stic_suite_name[0] == '\0' ? "" : " :: "), stic_suite_name);
526 526 printf("\n"); printf("\n");
527 527 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