Skip to content

Commit

Permalink
Bump stic version to 0.6
Browse files Browse the repository at this point in the history
Output
------

* Display number of failed checks in tests on fail
* Display <setup...>/<teardown...> on failures there
* Display number of failed tests
* Display number of skipped tests
* Use singular "check" for 1 failed check
* Write "1 test run" (not "tests")
* Don't capitalize stic label in test's output
* Always print test suit name in output
* Drop extra empty line from output

Integration
-----------

* Make test failure report compiler-friendly

Compatibility
-------------

* Use rand() (not random())

Performance
-----------

* Skip test fixtures without checking every test
* Don't run {setup,teardown}_once when no tests were run

Fixes
-----

* Make stic work when tests are defined with suite
* Fix skipping test header
* Fix qualifier inconsistency for one variable
* Fix buffer overflow
  • Loading branch information
xaizek committed Nov 15, 2018
1 parent b26fea5 commit 5c27f2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Stic -- Simple Tests In C
2010 -- 2016 (based on SeaTest)
2010 -- 2018 (based on SeaTest)

This file last updated: 13 July, 2017
Version: 0.5.2
This file last updated: 15 November, 2018
Version: 0.6

Brief Description

Expand Down
2 changes: 1 addition & 1 deletion src/stic.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

/* Global data. */

#define STIC_VERSION "0.5.2"
#define STIC_VERSION "0.6"
#define STIC_PROJECT_HOME "https://github.com/xaizek/stic"
#define STIC_PRINT_BUFFER_SIZE 100000

Expand Down

0 comments on commit 5c27f2f

Please sign in to comment.