aboutsummaryrefslogtreecommitdiff
path: root/tests/validation_old/UNIT/FixedPoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation_old/UNIT/FixedPoint.cpp')
-rw-r--r--tests/validation_old/UNIT/FixedPoint.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/validation_old/UNIT/FixedPoint.cpp b/tests/validation_old/UNIT/FixedPoint.cpp
index 6a92cfb963..26cf905abf 100644
--- a/tests/validation_old/UNIT/FixedPoint.cpp
+++ b/tests/validation_old/UNIT/FixedPoint.cpp
@@ -57,7 +57,7 @@ BOOST_DATA_TEST_CASE(FixedPointQS8Inputs, boost::unit_test::data::make(func_name
std::ifstream inputs_file{ base_file_name + ".in", std::ios::binary | std::ios::in };
BOOST_TEST_INFO(base_file_name + ".in");
- BOOST_TEST_REQUIRE(inputs_file.good());
+ BOOST_TEST_REQUIRE(inputs_file.good()); //FIXME: When moving to new framework: throw a FileNotFound exception
float float_val = 0.f;
@@ -90,9 +90,9 @@ BOOST_DATA_TEST_CASE(FixedPointQS8Outputs, (boost::unit_test::data::make(func_na
std::ifstream reference_file{ base_file_name + ".out", std::ios::binary | std::ios::in };
BOOST_TEST_INFO(base_file_name + ".in");
- BOOST_TEST_REQUIRE(inputs_file.good());
+ BOOST_TEST_REQUIRE(inputs_file.good()); //FIXME: When moving to new framework: throw a FileNotFound exception
BOOST_TEST_INFO(base_file_name + ".out");
- BOOST_TEST_REQUIRE(reference_file.good());
+ BOOST_TEST_REQUIRE(reference_file.good()); //FIXME: When moving to new framework: throw a FileNotFound exception
const float step_size = std::pow(2.f, -frac_bits);