mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
2009-02-10 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Wait 2 seconds. 1 second is sometimes not enough. * test/TimeSeedCriteriaTest.cc
This commit is contained in:
parent
900d102bbf
commit
d63308afc5
2 changed files with 10 additions and 2 deletions
|
@ -1,7 +1,9 @@
|
|||
#include "TimeSeedCriteria.h"
|
||||
#include "Util.h"
|
||||
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
#include "Util.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
class TimeSeedCriteriaTest:public CppUnit::TestFixture {
|
||||
|
@ -19,7 +21,8 @@ CPPUNIT_TEST_SUITE_REGISTRATION(TimeSeedCriteriaTest);
|
|||
|
||||
void TimeSeedCriteriaTest::testEvaluate() {
|
||||
TimeSeedCriteria cri(1);
|
||||
Util::sleep(1);
|
||||
// Seel 2seconds. 1 seconds are not enough in some systems.
|
||||
Util::sleep(2);
|
||||
CPPUNIT_ASSERT(cri.evaluate());
|
||||
cri.reset();
|
||||
cri.setDuration(10);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue