diff options
author | Nathan West <nathan.west@okstate.edu> | 2013-11-06 05:43:27 -0600 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-11-06 09:16:02 -0800 |
commit | 59ab46d521d11b9ad14da5221cb7fa269ab9dea7 (patch) | |
tree | fd2db33d1da5c3416d12d4c2dfae1c567c131c41 /gnuradio-runtime/lib/qa_runtime.cc | |
parent | 311b871d33494e380cd9b03de7841a2080f67bde (diff) |
runtime: add qa for fast_atan2f, removed a float equality test
Diffstat (limited to 'gnuradio-runtime/lib/qa_runtime.cc')
-rw-r--r-- | gnuradio-runtime/lib/qa_runtime.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/qa_runtime.cc b/gnuradio-runtime/lib/qa_runtime.cc index dbf7e5bb9a..886ef0d476 100644 --- a/gnuradio-runtime/lib/qa_runtime.cc +++ b/gnuradio-runtime/lib/qa_runtime.cc @@ -40,6 +40,7 @@ #include <qa_math.h> #include <qa_vmcircbuf.h> #include <qa_sincos.h> +#include <qa_fast_atan2f.h> CppUnit::TestSuite * qa_runtime::suite() @@ -56,6 +57,7 @@ qa_runtime::suite() s->addTest(qa_math::suite()); s->addTest(qa_vmcircbuf::suite()); s->addTest(qa_sincos::suite()); + s->addTest(qa_fast_atan2f::suite()); return s; } |