Merge pull request #1075 from mikedld/fix-process-signal-exit-code-test

Unmask SIGINT when testing termination by signal
This commit is contained in:
Aleksandar Fabijanic 2015-12-10 13:14:38 -06:00
commit 87cf7d033c

View File

@ -49,6 +49,7 @@ int main(int argc, char** argv)
}
else if (arg == "-raise-int")
{
std::signal(SIGINT, SIG_DFL);
std::raise(SIGINT);
}
}