[tests] Another batch of timeout increases.

llvm-svn: 174902
This commit is contained in:
Daniel Dunbar 2013-02-11 21:04:34 +00:00
parent cfe285e604
commit 496f1765a2
8 changed files with 12 additions and 12 deletions

View File

@ -58,7 +58,7 @@ int main()
f.wait();
Clock::time_point t1 = Clock::now();
assert(f.valid());
assert(t1-t0 < ms(5));
assert(t1-t0 < ms(50));
}
{
typedef int& T;
@ -74,7 +74,7 @@ int main()
f.wait();
Clock::time_point t1 = Clock::now();
assert(f.valid());
assert(t1-t0 < ms(5));
assert(t1-t0 < ms(50));
}
{
typedef void T;
@ -90,6 +90,6 @@ int main()
f.wait();
Clock::time_point t1 = Clock::now();
assert(f.valid());
assert(t1-t0 < ms(5));
assert(t1-t0 < ms(50));
}
}

View File

@ -50,7 +50,7 @@ void f()
}
else
{
assert(t1 - t0 - milliseconds(250) < milliseconds(10));
assert(t1 - t0 - milliseconds(250) < milliseconds(50));
assert(test2 == 0);
}
++runs;

View File

@ -58,7 +58,7 @@ void f()
}
else
{
assert(t1 - t0 - milliseconds(250) < milliseconds(10));
assert(t1 - t0 - milliseconds(250) < milliseconds(50));
assert(test2 == 0);
}
++runs;

View File

@ -53,7 +53,7 @@ void f()
}
else
{
assert(t1 - t0 - milliseconds(250) < milliseconds(5));
assert(t1 - t0 - milliseconds(250) < milliseconds(50));
assert(test2 == 0);
}
++runs;

View File

@ -79,7 +79,7 @@ void f()
}
else
{
assert(t1 - t0 - Clock::duration(250) < Clock::duration(5));
assert(t1 - t0 - Clock::duration(250) < Clock::duration(50));
assert(test2 == 0);
assert(!r);
}

View File

@ -37,7 +37,7 @@ void f()
m.unlock();
m.unlock();
ns d = t1 - t0 - ms(250);
assert(d < ms(10)); // within 10ms
assert(d < ms(50)); // within 50ms
}
int main()

View File

@ -26,7 +26,7 @@ int main()
std::this_thread::sleep_for(ms);
time_point t1 = Clock::now();
std::chrono::nanoseconds ns = (t1 - t0) - ms;
std::chrono::nanoseconds err = ms / 100;
// The time slept is within 1% of 500ms
std::chrono::nanoseconds err = 5 * ms / 100;
// The time slept is within 5% of 500ms
assert(std::abs(ns.count()) < err.count());
}

View File

@ -26,7 +26,7 @@ int main()
std::this_thread::sleep_until(t0 + ms);
time_point t1 = Clock::now();
std::chrono::nanoseconds ns = (t1 - t0) - ms;
std::chrono::nanoseconds err = ms / 100;
// The time slept is within 1% of 500ms
std::chrono::nanoseconds err = 5 * ms / 100;
// The time slept is within 5% of 500ms
assert(std::abs(ns.count()) < err.count());
}