aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_tests.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-14 21:40:33 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-14 21:40:33 +1000
commit0ebf6db4b972648ff5a2bed41120bff7b681ea37 (patch)
treef33c14837e2aa75056cf8e1dccb03b6432a43a1b /fish_tests.c
parentf321855c0293ec56c9f61c163bd1ac8927aabd1b (diff)
Increase fish robustness by improving signal handling when forking jobs and minor signal handling improvements
darcs-hash:20051014114033-ac50b-8d0f6274ac590f1b6dbe82c55366f44ed7debf20.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 ad37c4c8..6eaae62b 100644
--- a/fish_tests.c
+++ b/fish_tests.c
@@ -616,6 +616,7 @@ int main( int argc, char **argv )
say( L"Testing low-level functionality");
say( L"Lines beginning with '(ignore):' are not errors, they are warning messages\ngenerated by the fish parser library when given broken input, and can be\nignored. All actual errors begin with 'Error:'." );
+ proc_init();
output_init();
event_init();
exec_init();
@@ -649,5 +650,6 @@ int main( int argc, char **argv )
exec_destroy();
event_destroy();
output_destroy();
+ proc_destroy();
}