aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_tests.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-06 08:37:08 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-06 08:37:08 +1000
commitb9b841f60319fb5838060cb724a4882ef3be9a74 (patch)
treeabc72116fe9878b2356957c624eb6b235af20148 /fish_tests.c
parentb065bd6282f8facfa229e250d693ac43c9eb84b2 (diff)
Initial update for new event subsystem
darcs-hash:20051005223708-ac50b-8a8d7e003e1c24747f3f154cb66b6c1a1015c35b.gz
Diffstat (limited to 'fish_tests.c')
-rw-r--r--fish_tests.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fish_tests.c b/fish_tests.c
index 7cf8066a..4a29ddef 100644
--- a/fish_tests.c
+++ b/fish_tests.c
@@ -615,6 +615,7 @@ int main( int argc, char **argv )
say( L"Testing low-level functionality");
say( L"Lines beginning with 'fish:' are not errors, they are warning messages\ngenerated by the fish parser library when given broken input, and can be\nignored. All errors begin with 'Error:'." );
+ event_init();
exec_init();
parser_init();
function_init();
@@ -644,5 +645,6 @@ int main( int argc, char **argv )
complete_destroy();
wutil_destroy();
exec_destroy();
+ event_destroy();
}