diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-01-10 13:10:45 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-01-12 10:05:37 -0600 |
commit | a9e1c28ddaae5a48415fec1f336b5560eb85d3e1 (patch) | |
tree | 15a83abd5d78b7e456789c03ea36749d8033df21 /check-qfloat.c | |
parent | ac531cb6e542b1e61d668604adf9dc5306a948c0 (diff) |
check-qfloat: convert to gtest
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'check-qfloat.c')
-rw-r--r-- | check-qfloat.c | 47 |
1 files changed, 12 insertions, 35 deletions
diff --git a/check-qfloat.c b/check-qfloat.c index 3344057b3b..cdc66ea10b 100644 --- a/check-qfloat.c +++ b/check-qfloat.c @@ -10,7 +10,7 @@ * See the COPYING.LIB file in the top-level directory. * */ -#include <check.h> +#include <glib.h> #include "qfloat.h" #include "qemu-common.h" @@ -21,56 +21,33 @@ * (with some violations to access 'private' data) */ -START_TEST(qfloat_from_double_test) +static void qfloat_from_double_test(void) { QFloat *qf; const double value = -42.23423; qf = qfloat_from_double(value); - fail_unless(qf != NULL); - fail_unless(qf->value == value); - fail_unless(qf->base.refcnt == 1); - fail_unless(qobject_type(QOBJECT(qf)) == QTYPE_QFLOAT); + g_assert(qf != NULL); + g_assert(qf->value == value); + g_assert(qf->base.refcnt == 1); + g_assert(qobject_type(QOBJECT(qf)) == QTYPE_QFLOAT); // destroy doesn't exit yet g_free(qf); } -END_TEST -START_TEST(qfloat_destroy_test) +static void qfloat_destroy_test(void) { QFloat *qf = qfloat_from_double(0.0); QDECREF(qf); } -END_TEST -static Suite *qfloat_suite(void) +int main(int argc, char **argv) { - Suite *s; - TCase *qfloat_public_tcase; + g_test_init(&argc, &argv, NULL); - s = suite_create("QFloat test-suite"); + g_test_add_func("/public/from_double", qfloat_from_double_test); + g_test_add_func("/public/destroy", qfloat_destroy_test); - qfloat_public_tcase = tcase_create("Public Interface"); - suite_add_tcase(s, qfloat_public_tcase); - tcase_add_test(qfloat_public_tcase, qfloat_from_double_test); - tcase_add_test(qfloat_public_tcase, qfloat_destroy_test); - - return s; -} - -int main(void) -{ - int nf; - Suite *s; - SRunner *sr; - - s = qfloat_suite(); - sr = srunner_create(s); - - srunner_run_all(sr, CK_NORMAL); - nf = srunner_ntests_failed(sr); - srunner_free(sr); - - return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE; + return g_test_run(); } |