Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 91b90cc

Browse files
committedJan 24, 2025··
Add testing of 1 shot decoding
1 parent e777f8d commit 91b90cc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎test/test_basic_gcc_decimal32.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,18 @@ void compare_bits(long long coeff, int exp)
3434
<< "Boost: " << std::bitset<32>(boost_bits) << "\n"
3535
<< " GCC: " << std::bitset<32>(gcc_bits) << "\n" << std::endl;
3636
}
37+
38+
// Separate test of the to_components
39+
const auto dec_struct = dec32_val.to_components();
40+
const auto gcc_struct = gcc_val.to_components();
41+
42+
BOOST_TEST_EQ(gcc_struct.sign, gcc_val.isneg());
43+
BOOST_TEST_EQ(gcc_struct.sig, gcc_val.full_significand());
44+
BOOST_TEST_EQ(gcc_struct.exp, gcc_val.biased_exponent());
45+
46+
BOOST_TEST_EQ(dec_struct.sign, gcc_struct.sign);
47+
BOOST_TEST_EQ(dec_struct.sig, gcc_struct.sig);
48+
BOOST_TEST_EQ(dec_struct.exp, gcc_struct.exp);
3749
}
3850

3951
int main()

0 commit comments

Comments
 (0)
Please sign in to comment.