2000-07-07 16:04:40 +00:00
|
|
|
/* boost integer_traits.hpp tests
|
|
|
|
*
|
|
|
|
* Copyright Jens Maurer 2000
|
|
|
|
* Permission to use, copy, modify, sell, and distribute this software
|
2001-05-31 17:22:20 +00:00
|
|
|
* is hereby granted without fee provided that the above copyright notice
|
2000-07-07 16:04:40 +00:00
|
|
|
* appears in all copies and that both that copyright notice and this
|
|
|
|
* permission notice appear in supporting documentation,
|
|
|
|
*
|
|
|
|
* Jens Maurer makes no representations about the suitability of this
|
|
|
|
* software for any purpose. It is provided "as is" without express or
|
|
|
|
* implied warranty.
|
|
|
|
*
|
|
|
|
* $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
|
|
|
|
2001-04-30 13:38:23 +00:00
|
|
|
#define BOOST_INCLUDE_MAIN
|
|
|
|
#include <boost/test/test_tools.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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void runtest(const char * type, T)
|
|
|
|
{
|
|
|
|
typedef boost::integer_traits<T> traits;
|
|
|
|
std::cout << "Checking " << type
|
|
|
|
<< "; min is " << traits::min()
|
|
|
|
<< ", max is " << traits::max()
|
|
|
|
<< std::endl;
|
2001-04-30 13:38:23 +00:00
|
|
|
BOOST_TEST(traits::is_specialized);
|
|
|
|
BOOST_TEST(traits::is_integer);
|
|
|
|
BOOST_TEST(traits::is_integral);
|
|
|
|
BOOST_TEST(traits::const_min == traits::min());
|
|
|
|
BOOST_TEST(traits::const_max == traits::max());
|
2000-07-07 16:04:40 +00:00
|
|
|
}
|
|
|
|
|
2001-04-30 13:38:23 +00:00
|
|
|
int test_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());
|
2001-02-27 12:52:08 +00:00
|
|
|
#if !defined(BOOST_NO_INT64_T) && !defined(BOOST_MSVC) && !defined(__BORLANDC__) && !defined(__BEOS__)
|
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.
|
|
|
|
return 0;
|
|
|
|
}
|
2001-02-27 12:52:08 +00:00
|
|
|
|