CUnit assertion Assertion `((void *)0) != f_pCurSuite' failed

徘徊边缘 提交于 2019-12-12 03:38:26

问题


My code looks like this:

#include <CUnit/CUnit.h>


int maxi(int i1, int i2)
{
    return (i1 > i2) ? i1 : i2;
}

void test_maxi(void)
{
    CU_ASSERT(maxi(0,2) == 2);
}

int main() {
    test_maxi();
    return 0;
}

I compiled it using gcc test.c -o test -lcunit on Ubuntu.

I get this error when trying to launch it:

test: TestRun.c:159: CU_assertImplementation: Assertion `((void *)0) != f_pCurSuite' failed. Aborted (core dumped)

What does it mean? I found nothing about it on the internet.


回答1:


CUnit works on test suites, you need to create before you can run the application.

A very basic way to make your test to work is like the following:

#include <CUnit/CUnit.h>
#include <CUnit/Basic.h>

int maxi(int i1, int i2)
{
    return (i1 > i2) ? i1 : i2;
}

void test_maxi(void)
{
    CU_ASSERT(maxi(0,2) == 2);
}

int main() {
    CU_initialize_registry();
    CU_pSuite suite = CU_add_suite("maxi_test", 0, 0);

    CU_add_test(suite, "maxi_fun", test_maxi);

    CU_basic_set_mode(CU_BRM_VERBOSE);
    CU_basic_run_tests();
    CU_cleanup_registry();

    return 0;
}

without all the required checks, but as Joachim Pileborg suggested in the comments, it's safer to follow the example code provided.



来源:https://stackoverflow.com/questions/38183974/cunit-assertion-assertion-void-0-f-pcursuite-failed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!