int main() { int Error = 0; Error += test_ctr(); Error += test_two_axis_ctr(); Error += test_size(); Error += test_precision(); Error += test_constexpr(); return Error; }
int test_functions(void) { int retval = 0; retval |= test_settings(); retval |= test_rounding(); retval |= test_sticky(); retval |= test_precision(); retval |= test_class(); retval |= test_mask(); return retval; }