From be1be806d2ce576bc23c7ac62227d24fbd6800c5 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Tue, 30 Aug 2011 17:24:40 -0700 Subject: uhd: also normalise the time spec when adding/subtracting (added unit test) --- host/tests/time_spec_test.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'host/tests') diff --git a/host/tests/time_spec_test.cpp b/host/tests/time_spec_test.cpp index 97e0dec21..467da5c18 100644 --- a/host/tests/time_spec_test.cpp +++ b/host/tests/time_spec_test.cpp @@ -85,4 +85,15 @@ BOOST_AUTO_TEST_CASE(test_time_spec_neg_values){ std::cout << "ts1 " << ts1.get_real_secs() << std::endl; std::cout << "ts2 " << ts2.get_real_secs() << std::endl; BOOST_CHECK(ts1 > ts2); + + uhd::time_spec_t tsa(430.001083); + uhd::time_spec_t tsb(429.999818); + uhd::time_spec_t tsc(0.3); + uhd::time_spec_t tsd = tsa - tsb; + std::cout << "tsa " << tsa.get_real_secs() << std::endl; + std::cout << "tsb " << tsb.get_real_secs() << std::endl; + std::cout << "tsc " << tsc.get_real_secs() << std::endl; + std::cout << "tsd " << tsd.get_real_secs() << std::endl; + BOOST_CHECK(tsa > tsb); + BOOST_CHECK(tsc > tsd); } -- cgit v1.2.3