diff options
author | Camilo Celis Guzman <camilo@pexip.com> | 2020-01-25 23:14:07 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-19 23:04:36 +0200 |
commit | 18373cba743e16e502e18d795af360600f9fd44d (patch) | |
tree | d17d106c373f86ea6a3d32b8fefbf1d784985a40 /docs/markdown/snippets | |
parent | 4d6faf6a136018405e4de17e2173df76d37b48dd (diff) | |
download | meson-18373cba743e16e502e18d795af360600f9fd44d.zip meson-18373cba743e16e502e18d795af360600f9fd44d.tar.gz meson-18373cba743e16e502e18d795af360600f9fd44d.tar.bz2 |
mtest: terminate a test via SIGTERM first then (if needed) via SIGKILL
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/termination_signal_for_tests.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/snippets/termination_signal_for_tests.md b/docs/markdown/snippets/termination_signal_for_tests.md new file mode 100644 index 0000000..e99ea16 --- /dev/null +++ b/docs/markdown/snippets/termination_signal_for_tests.md @@ -0,0 +1,6 @@ +## Changed the signal used to terminate a test process (group) + +A test process (group) is now terminated via SIGTERM instead of SIGKILL +allowing the signal to be handled. However, it is now the responsibility of +the custom signal handler (if any) to ensure that any process spawned by the +top-level test processes is correctly killed. |