Danny Robson
8cc4c1e82a
requires literal string arrays, and implements more of the specifier specification. does not implement 'n' or '$' specifiers. falls back to snprintf for real arguments.
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
#include "fixed.hpp"
|
|
#include "types/string.hpp"
|
|
|
|
#include "tap.hpp"
|
|
|
|
template <typename T, unsigned I, unsigned E>
|
|
void
|
|
test_simple (util::TAP::logger &tap)
|
|
{
|
|
using fixed_t = util::fixed<T,I,E>;
|
|
using integer_t = typename fixed_t::integer_t;
|
|
|
|
const fixed_t lo {integer_t{0}};
|
|
const fixed_t hi {integer_t{1}};
|
|
|
|
std::ostringstream os;
|
|
os << "fixed<" << type_to_string<T> () << ',' << I << ',' << E << '>';
|
|
|
|
tap.expect_eq (lo, lo, "%s self equality", os.str ());
|
|
tap.expect_eq (hi, hi, "%s self equality", os.str ());
|
|
|
|
tap.expect_neq (hi, lo, "%s inequality", os.str ());
|
|
tap.expect_neq (lo, hi, "%s inequality", os.str ());
|
|
|
|
tap.expect_lt (lo, hi, "%s less than", os.str ());
|
|
tap.expect_le (lo, hi, "%s less than equal", os.str ());
|
|
tap.expect_le (lo, lo, "%s less than equal", os.str ());
|
|
|
|
tap.expect_gt (hi, lo, "%s greater than", os.str ());
|
|
tap.expect_ge (lo, lo, "%s greater than equal", os.str ());
|
|
tap.expect_ge (hi, lo, "%s greater than equal", os.str ());
|
|
}
|
|
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
util::TAP::logger tap;
|
|
|
|
test_simple<signed,16,16> (tap);
|
|
test_simple<signed,26, 6> (tap);
|
|
test_simple<signed,32,32> (tap);
|
|
|
|
test_simple<unsigned,16,16> (tap);
|
|
test_simple<unsigned,26, 6> (tap);
|
|
test_simple<unsigned,32,32> (tap);
|
|
}
|