nrtb-core team mailing list archive
-
nrtb-core team
-
Mailing list archive
-
Message #00170
[Branch ~fpstovall/nrtb/cpp_common] Rev 40: Relaxed time checks a bit to allow more room for slower machines.
------------------------------------------------------------
revno: 40
committer: fpstovall@xxxxxxxxx
branch nick: dev
timestamp: Mon 2011-07-25 21:08:14 -0400
message:
Relaxed time checks a bit to allow more room for slower machines.
modified:
common/timer/timer_test.cpp
--
lp:~fpstovall/nrtb/cpp_common
https://code.launchpad.net/~fpstovall/nrtb/cpp_common
Your team NRTB Core is subscribed to branch lp:~fpstovall/nrtb/cpp_common.
To unsubscribe from this branch go to https://code.launchpad.net/~fpstovall/nrtb/cpp_common/+edit-subscription
=== modified file 'common/timer/timer_test.cpp'
--- common/timer/timer_test.cpp 2011-07-21 22:30:26 +0000
+++ common/timer/timer_test.cpp 2011-07-26 01:08:14 +0000
@@ -55,7 +55,7 @@
<< interval.interval_as_HMS(true)
<< "\" or \"" << interval.interval_as_HMS() << "\"" << endl;
cout << "Total run time: " << overall.stop() << " seconds." << endl;
- if ((overall.interval() < 1.1) or (overall.interval() > 1.102))
+ if ((overall.interval() < 1.1) or (overall.interval() > 1.104))
{
cerr << "Measured runtime "
<< overall.interval()