2000-07-07 16:04:40 +00:00
|
|
|
/* boost integer_traits.hpp tests
|
|
|
|
*
|
|
|
|
* Copyright Jens Maurer 2000
|
2004-07-27 03:43:34 +00:00
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See
|
|
|
|
* accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
2000-07-07 16:04:40 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Revision history
|
|
|
|
* 2000-02-22 Small improvements by Beman Dawes
|
|
|
|
* 2000-06-27 Rework for better MSVC and BCC co-operation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <boost/integer_traits.hpp>
|
2000-09-23 16:35:19 +00:00
|
|
|
// use int64_t instead of long long for better portability
|
|
|
|
#include <boost/cstdint.hpp>
|
2000-07-07 16:04:40 +00:00
|
|
|
|
2009-11-26 12:59:39 +00:00
|
|
|
#include <boost/detail/lightweight_test.hpp>
|
2000-07-07 16:04:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* General portability note:
|
|
|
|
* MSVC mis-compiles explicit function template instantiations.
|
|
|
|
* For example, f<A>() and f<B>() are both compiled to call f<A>().
|
|
|
|
* BCC is unable to implicitly convert a "const char *" to a std::string
|
|
|
|
* when using explicit function template instantiations.
|
|
|
|
*
|
|
|
|
* Therefore, avoid explicit function template instantiations.
|
|
|
|
*/
|
|
|
|
|
2002-07-27 11:47:04 +00:00
|
|
|
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
|
2001-09-28 17:38:10 +00:00
|
|
|
template<typename T> inline T make_char_numeric_for_streaming(T x) { return x; }
|
2002-05-05 11:00:28 +00:00
|
|
|
namespace fix{
|
2001-09-28 17:38:10 +00:00
|
|
|
inline int make_char_numeric_for_streaming(char c) { return c; }
|
|
|
|
inline int make_char_numeric_for_streaming(signed char c) { return c; }
|
|
|
|
inline int make_char_numeric_for_streaming(unsigned char c) { return c; }
|
2002-05-05 11:00:28 +00:00
|
|
|
}
|
|
|
|
using namespace fix;
|
|
|
|
#else
|
|
|
|
template<typename T> inline T make_char_numeric_for_streaming(T x) { return x; }
|
|
|
|
inline int make_char_numeric_for_streaming(char c) { return c; }
|
|
|
|
inline int make_char_numeric_for_streaming(signed char c) { return c; }
|
|
|
|
inline int make_char_numeric_for_streaming(unsigned char c) { return c; }
|
|
|
|
#endif
|
2001-09-28 17:38:10 +00:00
|
|
|
|
2000-07-07 16:04:40 +00:00
|
|
|
template<class T>
|
|
|
|
void runtest(const char * type, T)
|
|
|
|
{
|
|
|
|
typedef boost::integer_traits<T> traits;
|
|
|
|
std::cout << "Checking " << type
|
2004-02-26 18:27:02 +00:00
|
|
|
<< "; min is " << make_char_numeric_for_streaming((traits::min)())
|
|
|
|
<< ", max is " << make_char_numeric_for_streaming((traits::max)())
|
2001-09-28 17:38:10 +00:00
|
|
|
<< std::endl;
|
2009-11-26 12:59:39 +00:00
|
|
|
BOOST_TEST(traits::is_specialized);
|
2005-05-25 13:43:12 +00:00
|
|
|
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1200)
|
|
|
|
// MSVC++ 6.0 issues a LNK1179 error (duplicate comdat) when the compiler
|
|
|
|
// generates different symbol names with a very long common prefix:
|
|
|
|
// the dummy "&& true" disambiguates between the symbols generated by this
|
2009-11-26 12:59:39 +00:00
|
|
|
// BOOST_TEST instantiation and the preceding one.
|
|
|
|
BOOST_TEST(traits::is_integer && true);
|
2005-05-25 13:43:12 +00:00
|
|
|
#else
|
2009-11-26 12:59:39 +00:00
|
|
|
BOOST_TEST(traits::is_integer);
|
2005-05-25 13:43:12 +00:00
|
|
|
#endif
|
2009-11-26 12:59:39 +00:00
|
|
|
BOOST_TEST(traits::is_integral == true);
|
|
|
|
BOOST_TEST(traits::const_min == (traits::min)());
|
|
|
|
BOOST_TEST(traits::const_max == (traits::max)());
|
2000-07-07 16:04:40 +00:00
|
|
|
}
|
|
|
|
|
2009-11-26 12:59:39 +00:00
|
|
|
int main(int, char*[])
|
2000-07-07 16:04:40 +00:00
|
|
|
{
|
|
|
|
runtest("bool", bool());
|
|
|
|
runtest("char", char());
|
|
|
|
typedef signed char signed_char;
|
|
|
|
runtest("signed char", signed_char());
|
|
|
|
typedef unsigned char unsigned_char;
|
|
|
|
runtest("unsigned char", unsigned_char());
|
2001-04-30 13:38:23 +00:00
|
|
|
runtest("wchar_t", wchar_t());
|
2000-07-07 16:04:40 +00:00
|
|
|
runtest("short", short());
|
|
|
|
typedef unsigned short unsigned_short;
|
|
|
|
runtest("unsigned short", unsigned_short());
|
|
|
|
runtest("int", int());
|
|
|
|
typedef unsigned int unsigned_int;
|
|
|
|
runtest("unsigned int", unsigned_int());
|
|
|
|
runtest("long", long());
|
|
|
|
typedef unsigned long unsigned_long;
|
|
|
|
runtest("unsigned long", unsigned_long());
|
2009-11-29 16:02:45 +00:00
|
|
|
#ifndef BOOST_NO_INTEGRAL_INT64_T
|
2000-09-24 11:35:25 +00:00
|
|
|
//
|
|
|
|
// MS/Borland compilers can't support 64-bit member constants
|
2001-02-27 12:52:08 +00:00
|
|
|
// BeOS doesn't have specialisations for long long in SGI's <limits> header.
|
2000-09-23 16:35:19 +00:00
|
|
|
runtest("int64_t (possibly long long)", boost::int64_t());
|
|
|
|
runtest("uint64_t (possibly unsigned long long)", boost::uint64_t());
|
2001-04-30 13:38:23 +00:00
|
|
|
#else
|
|
|
|
std::cout << "Skipped int64_t and uint64_t" << std::endl;
|
2000-07-07 16:04:40 +00:00
|
|
|
#endif
|
|
|
|
// Some compilers don't pay attention to std:3.6.1/5 and issue a
|
|
|
|
// warning here if "return 0;" is omitted.
|
2009-11-26 13:35:03 +00:00
|
|
|
return boost::report_errors();
|
2000-07-07 16:04:40 +00:00
|
|
|
}
|
2001-02-27 12:52:08 +00:00
|
|
|
|