Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/check_help.c

    r2d88d25a rc227706  
    77#include "help.h"
    88
    9 START_TEST(test_help_initfree)
     9START_TEST(test_help_none)
    1010        help_t *h, *r;
    1111        r = help_init(&h, "/dev/null");
    1212        fail_if(r == NULL);
    1313        fail_if(r != h);
    14        
    15         help_free(&h);
    16         fail_if(h != NULL);
    1714END_TEST
    1815
     
    2825        TCase *tc_core = tcase_create("Core");
    2926        suite_add_tcase (s, tc_core);
    30         tcase_add_test (tc_core, test_help_initfree);
     27        tcase_add_test (tc_core, test_help_none);
    3128        tcase_add_test (tc_core, test_help_nonexistent);
    3229        return s;
Note: See TracChangeset for help on using the changeset viewer.