diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2020-11-05 22:03:02 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2020-11-05 22:03:02 +0100 |
commit | 3ff8703ca68709c116762a5feda378903e2419d9 (patch) | |
tree | 7a807d07a45766443cb492414eefb31703ef072c /tests/common/check_stdin.c | |
parent | 68feeee28d2121cd2311650c5a21740bbad8074b (diff) | |
download | blogc-3ff8703ca68709c116762a5feda378903e2419d9.tar.gz blogc-3ff8703ca68709c116762a5feda378903e2419d9.tar.bz2 blogc-3ff8703ca68709c116762a5feda378903e2419d9.zip |
tests: upgrade deprecated cmocka test runner
Diffstat (limited to 'tests/common/check_stdin.c')
-rw-r--r-- | tests/common/check_stdin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/common/check_stdin.c b/tests/common/check_stdin.c index 862533d..5616ee9 100644 --- a/tests/common/check_stdin.c +++ b/tests/common/check_stdin.c @@ -51,8 +51,8 @@ test_read(void **state) int main(void) { - const UnitTest tests[] = { - unit_test(test_read), + const struct CMUnitTest tests[] = { + cmocka_unit_test(test_read), }; - return run_tests(tests); + return cmocka_run_group_tests(tests, NULL, NULL); } |