Windows build configuration

This commit is contained in:
Marko Zivanovic
2015-09-13 22:18:18 +02:00
parent b1a19e5d91
commit fb01910bac
6 changed files with 97 additions and 42 deletions
+2 -2
View File
@@ -42,10 +42,10 @@ size_t countInLoop(size_t freq, time_duration duration) {
BOOST_AUTO_TEST_CASE(test_slow) {
size_t c = countInLoop(5, seconds(5));
BOOST_WARN_CLOSE((float) c, 25, 10);
BOOST_WARN_CLOSE((float) c, 25., 10.);
}
BOOST_AUTO_TEST_CASE(test_fast) {
size_t c = countInLoop(100, seconds(5));
BOOST_WARN_CLOSE((float) c, 500, 10);
BOOST_WARN_CLOSE((float) c, 500., 10.);
}