Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Downsampling is disabled for buffering tests.
  • Loading branch information
Antti Virtanen committed Mar 21, 2011
1 parent 2a14098 commit 73fdebc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/client/clientapitest.cpp
Expand Up @@ -412,6 +412,7 @@ void ClientApiTest::testBuffering()
magnetometer->setInterval(100);
magnetometer->setBufferSize(10);
magnetometer->setBufferInterval(1500);
magnetometer->setDownsampling(false);

magnetometer->start();

Expand Down Expand Up @@ -441,6 +442,7 @@ void ClientApiTest::testBufferingHighRate()
magnetometer->setInterval(25);
magnetometer->setBufferSize(100);
magnetometer->setBufferInterval(6000);
magnetometer->setDownsampling(false);

magnetometer->start();

Expand All @@ -463,6 +465,7 @@ void ClientApiTest::testBufferingCompatibility()
magnetometer->setInterval(100);
magnetometer->setBufferSize(10);
magnetometer->setBufferInterval(1500);
magnetometer->setDownsampling(false);

magnetometer->start();

Expand Down Expand Up @@ -492,6 +495,7 @@ void ClientApiTest::testBufferingInterval()
magnetometer->setInterval(100);
magnetometer->setBufferInterval(0);
magnetometer->setBufferSize(40);
magnetometer->setDownsampling(false);

magnetometer->start();

Expand Down

0 comments on commit 73fdebc

Please sign in to comment.