File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ int main()
9292 func1 (boost::move (p));
9393#endif
9494 BOOST_TEST (f.valid ());
95- BOOST_TEST_EQ (f.wait_for (ms (750 )) , boost::future_status::ready);
95+ BOOST_TEST_EQ (f.wait_for (ms (2000 )) , boost::future_status::ready);
9696 BOOST_TEST (f.valid ());
9797 Clock::time_point t0 = Clock::now ();
9898 f.wait ();
@@ -115,7 +115,7 @@ int main()
115115#else
116116 func3 (boost::move (p));
117117#endif
118- BOOST_TEST_EQ (f.wait_for (ms (750 )) , boost::future_status::ready);
118+ BOOST_TEST_EQ (f.wait_for (ms (2000 )) , boost::future_status::ready);
119119 BOOST_TEST (f.valid ());
120120 Clock::time_point t0 = Clock::now ();
121121 f.wait ();
@@ -138,7 +138,7 @@ int main()
138138#else
139139 func5 (boost::move (p));
140140#endif
141- BOOST_TEST_EQ (f.wait_for (ms (750 )) , boost::future_status::ready);
141+ BOOST_TEST_EQ (f.wait_for (ms (2000 )) , boost::future_status::ready);
142142 BOOST_TEST (f.valid ());
143143 Clock::time_point t0 = Clock::now ();
144144 f.wait ();
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ int main()
9393 func1 (boost::move (p));
9494#endif
9595 BOOST_TEST (f.valid ());
96- BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (750 )) , boost::future_status::ready);
96+ BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (2000 )) , boost::future_status::ready);
9797 BOOST_TEST (f.valid ());
9898 Clock::time_point t0 = Clock::now ();
9999 f.wait ();
@@ -116,7 +116,7 @@ int main()
116116#else
117117 func3 (boost::move (p));
118118#endif
119- BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (750 )) , boost::future_status::ready);
119+ BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (2000 )) , boost::future_status::ready);
120120 BOOST_TEST (f.valid ());
121121 Clock::time_point t0 = Clock::now ();
122122 f.wait ();
@@ -139,7 +139,7 @@ int main()
139139#else
140140 func5 (boost::move (p));
141141#endif
142- BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (750 )) , boost::future_status::ready);
142+ BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (2000 )) , boost::future_status::ready);
143143 BOOST_TEST (f.valid ());
144144 Clock::time_point t0 = Clock::now ();
145145 f.wait ();
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ int main()
9292 func1 (boost::move (p));
9393#endif
9494 BOOST_TEST (f.valid ());
95- BOOST_TEST_EQ (f.wait_for (ms (750 )) , boost::future_status::ready);
95+ BOOST_TEST_EQ (f.wait_for (ms (2000 )) , boost::future_status::ready);
9696 BOOST_TEST (f.valid ());
9797 Clock::time_point t0 = Clock::now ();
9898 f.wait ();
@@ -115,7 +115,7 @@ int main()
115115#else
116116 func3 (boost::move (p));
117117#endif
118- BOOST_TEST_EQ (f.wait_for (ms (750 )) , boost::future_status::ready);
118+ BOOST_TEST_EQ (f.wait_for (ms (2000 )) , boost::future_status::ready);
119119 BOOST_TEST (f.valid ());
120120 Clock::time_point t0 = Clock::now ();
121121 f.wait ();
@@ -138,7 +138,7 @@ int main()
138138#else
139139 func5 (boost::move (p));
140140#endif
141- BOOST_TEST_EQ (f.wait_for (ms (750 )) , boost::future_status::ready);
141+ BOOST_TEST_EQ (f.wait_for (ms (2000 )) , boost::future_status::ready);
142142 BOOST_TEST (f.valid ());
143143 Clock::time_point t0 = Clock::now ();
144144 f.wait ();
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ int main()
9393 func1 (boost::move (p));
9494#endif
9595 BOOST_TEST (f.valid ());
96- BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (750 )) , boost::future_status::ready);
96+ BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (2000 )) , boost::future_status::ready);
9797 BOOST_TEST (f.valid ());
9898 Clock::time_point t0 = Clock::now ();
9999 f.wait ();
@@ -116,7 +116,7 @@ int main()
116116#else
117117 func3 (boost::move (p));
118118#endif
119- BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (750 )) , boost::future_status::ready);
119+ BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (2000 )) , boost::future_status::ready);
120120 BOOST_TEST (f.valid ());
121121 Clock::time_point t0 = Clock::now ();
122122 f.wait ();
@@ -139,7 +139,7 @@ int main()
139139#else
140140 func5 (boost::move (p));
141141#endif
142- BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (750 )) , boost::future_status::ready);
142+ BOOST_TEST_EQ (f.wait_until (Clock::now () + ms (2000 )) , boost::future_status::ready);
143143 BOOST_TEST (f.valid ());
144144 Clock::time_point t0 = Clock::now ();
145145 f.wait ();
You can’t perform that action at this time.
0 commit comments