Changeset 2ecfe39 for tests/check_help.c


Ignore:
Timestamp:
2008-02-17T02:12:09Z (16 years ago)
Author:
Sven Moritz Hallberg <sm@…>
Branches:
master
Children:
d858d21
Parents:
37bff51 (diff), 2d88d25a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

more upstream changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/check_help.c

    r37bff51 r2ecfe39  
    77#include "help.h"
    88
    9 START_TEST(test_help_none)
     9START_TEST(test_help_initfree)
    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);
    1417END_TEST
    1518
     
    2528        TCase *tc_core = tcase_create("Core");
    2629        suite_add_tcase (s, tc_core);
    27         tcase_add_test (tc_core, test_help_none);
     30        tcase_add_test (tc_core, test_help_initfree);
    2831        tcase_add_test (tc_core, test_help_nonexistent);
    2932        return s;
Note: See TracChangeset for help on using the changeset viewer.