test: Increase robustness of the test suite for high -j

This commit is contained in:
Dennis Klein
2022-03-24 13:10:29 +01:00
parent be2bac2a7c
commit 5c53c5aa22
6 changed files with 23 additions and 23 deletions

View File

@@ -77,8 +77,8 @@ execute_result execute(const string& cmd, const string& prefix, const string& in
bp::async_pipe errorPipe(ios);
const string delimiter = "\n";
ba::deadline_timer inputTimer(ios, boost::posix_time::milliseconds(100)); // NOLINT
ba::deadline_timer signalTimer(ios, boost::posix_time::milliseconds(400)); // NOLINT
ba::deadline_timer inputTimer(ios, boost::posix_time::milliseconds(1000)); // NOLINT
ba::deadline_timer signalTimer(ios, boost::posix_time::milliseconds(2000)); // NOLINT
// child process
bp::child c(cmd, bp::std_out > outputPipe, bp::std_err > errorPipe, bp::std_in < inputPipe);