mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-30 05:31:48 +08:00
Fix test suite
darcs-hash:20060519141023-ac50b-96cb2401e68ed0fa169c332c8efa8037a8482011.gz
This commit is contained in:
parent
e6b1035ddc
commit
27c9eb8758
|
@ -102,7 +102,7 @@ static int pq_compare( void *e1, void *e2 )
|
||||||
/**
|
/**
|
||||||
Test priority queue functionality
|
Test priority queue functionality
|
||||||
*/
|
*/
|
||||||
static int pq_test( int elements )
|
static void pq_test( int elements )
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int prev;
|
int prev;
|
||||||
|
@ -290,7 +290,7 @@ static int hash_test( int elements )
|
||||||
/**
|
/**
|
||||||
Arraylist test
|
Arraylist test
|
||||||
*/
|
*/
|
||||||
static int al_test( int sz)
|
static void al_test( int sz)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
array_list_t l;
|
array_list_t l;
|
||||||
|
@ -690,7 +690,6 @@ int main( int argc, char **argv )
|
||||||
proc_init();
|
proc_init();
|
||||||
halloc_util_init();
|
halloc_util_init();
|
||||||
event_init();
|
event_init();
|
||||||
exec_init();
|
|
||||||
parser_init();
|
parser_init();
|
||||||
function_init();
|
function_init();
|
||||||
builtin_init();
|
builtin_init();
|
||||||
|
@ -718,7 +717,6 @@ int main( int argc, char **argv )
|
||||||
builtin_destroy();
|
builtin_destroy();
|
||||||
complete_destroy();
|
complete_destroy();
|
||||||
wutil_destroy();
|
wutil_destroy();
|
||||||
exec_destroy();
|
|
||||||
event_destroy();
|
event_destroy();
|
||||||
proc_destroy();
|
proc_destroy();
|
||||||
halloc_util_destroy();
|
halloc_util_destroy();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user