diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2022-12-26 12:41:36 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2022-12-26 12:41:36 +0100 |
| commit | cecdb7c5a0fc4821bc56c6aae5428925ec1baa15 (patch) | |
| tree | 5f478c2154ffafe55f1866edd82546d1472fb6c3 /tests/nissy_tests.c | |
| parent | 1ac26de8dcb76323a5f96eab200a027236cb55d0 (diff) | |
| download | nissy-cecdb7c5a0fc4821bc56c6aae5428925ec1baa15.tar.gz nissy-cecdb7c5a0fc4821bc56c6aae5428925ec1baa15.zip | |
Fixed fst_inverse
Diffstat (limited to '')
| -rw-r--r-- | tests/nissy_tests.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/nissy_tests.c b/tests/nissy_tests.c new file mode 100644 index 0000000..d959423 --- /dev/null +++ b/tests/nissy_tests.c | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #include <stdio.h> | ||
| 2 | |||
| 3 | void fst_pre_init_testall(); | ||
| 4 | void fst_post_init_testall(); | ||
| 5 | |||
| 6 | int main() { | ||
| 7 | fst_pre_init_testall(); | ||
| 8 | fst_post_init_testall(); | ||
| 9 | |||
| 10 | printf("All tests passed.\n"); | ||
| 11 | return 0; | ||
| 12 | } | ||
