nrtb-core team mailing list archive
-
nrtb-core team
-
Mailing list archive
-
Message #00171
[Branch ~fpstovall/nrtb/cpp_common] Rev 41: Relaxed total elapsed time check a little more after experience testing on aother machine.
------------------------------------------------------------
revno: 41
committer: fpstovall@xxxxxxxxx
branch nick: dev
timestamp: Mon 2011-07-25 21:18:27 -0400
message:
Relaxed total elapsed time check a little more after experience testing on aother machine.
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-26 01:08:14 +0000
+++ common/timer/timer_test.cpp 2011-07-26 01:18:27 +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.104))
+ if ((overall.interval() < 1.1) or (overall.interval() > 1.105))
{
cerr << "Measured runtime "
<< overall.interval()