Merge pull request #2987 from matt335672/fix_freebsd_core

Don't generate a corefile when generating SIGSEGV
This commit is contained in:
metalefty 2024-03-14 09:12:00 +09:00 committed by GitHub
commit 01d3dedfdf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -108,6 +108,9 @@ START_TEST(test_g_signal_child_stop_1)
pid = g_fork();
if (pid == 0)
{
// Before raising the signal, change directory to a non-writeable
// one to avoid generating a corefile.
g_set_current_dir("/");
raise(SIGSEGV);
}
ck_assert_int_ne(pid, 0);