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

Skip test fixtures without checking every test
This speeds things up for large test suites.
Author: xaizek
Author date (UTC): 2018-07-15 18:47
Committer name: xaizek
Committer date (UTC): 2018-07-15 21:24
Parent(s): c06633a12e208e88e107583302adf22dc8ccda3a
Signing key: 99DC5E4DB05F6BE2
Tree: 43f9759f15f6f9d3b9648eed03ab60419eeff7c7
File Lines added Lines deleted
src/stic.h 1 1
File src/stic.h changed (mode: 100644) (index e4bc80e..61f18f1)
... ... static void stic_fixture(void)
308 308 size_t i; size_t i;
309 309
310 310 const char *fixture_name = stic_get_fixture_name(); const char *fixture_name = stic_get_fixture_name();
311 if(fixture_name == NULL)
311 if(fixture_name == NULL || !stic_should_run(fixture_name, NULL))
312 312 { {
313 313 return; return;
314 314 } }
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