-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtype-main.t.cpp
90 lines (74 loc) · 2.29 KB
/
type-main.t.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// Copyright 2018-2019 by Martin Moene
//
// https://github.com/martinmoene/type
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include "type-main.t.hpp"
#define type_PRESENT( x ) \
std::cout << #x << ": " << x << "\n"
#define type_ABSENT( x ) \
std::cout << #x << ": (undefined)\n"
lest::tests & specification()
{
static lest::tests tests;
return tests;
}
CASE( "type version" "[.type][.version]" )
{
type_PRESENT( type_MAJOR );
type_PRESENT( type_MINOR );
type_PRESENT( type_PATCH );
type_PRESENT( type_VERSION );
}
CASE( "type configuration" "[.type][.config]" )
{
}
CASE( "C++ language: __cplusplus" "[.stdc++]" )
{
type_PRESENT( __cplusplus );
#if _MSVC_LANG
type_PRESENT( _MSVC_LANG );
#else
type_ABSENT( _MSVC_LANG );
#endif
}
CASE( "C++ compiler: compiler version" "[.compiler]" )
{
type_PRESENT( type_COMPILER_CLANG_VERSION );
type_PRESENT( type_COMPILER_GNUC_VERSION );
type_PRESENT( type_COMPILER_MSVC_VERSION );
}
CASE( "C++ language: presence of C++ language features" "[.stdlanguage]" )
{
type_PRESENT( type_HAVE_CONSTEXPR_11 );
type_PRESENT( type_HAVE_CONSTEXPR_14 );
type_PRESENT( type_HAVE_EXPLICIT_CONVERSION );
type_PRESENT( type_HAVE_IS_DELETE );
type_PRESENT( type_HAVE_NOEXCEPT );
type_PRESENT( type_HAVE_STD_HASH );
}
CASE( "C++ library: presence of C++ library features" "[.stdlibrary]" )
{
type_PRESENT( type_HAS_CPP0X );
#if defined _HAS_CPP0X
type_PRESENT( _HAS_CPP0X );
#else
type_ABSENT( _HAS_CPP0X );
#endif
}
int main( int argc, char * argv[] )
{
return lest::run( specification(), argc, argv );
}
#if 0
g++ -I../include -o type.t.exe type.t.cpp && type.t.exe --pass
g++ -std=c++98 -I../include -o type.t.exe type.t.cpp && type.t.exe --pass
g++ -std=c++03 -I../include -o type.t.exe type.t.cpp && type.t.exe --pass
g++ -std=c++0x -I../include -o type.t.exe type.t.cpp && type.t.exe --pass
g++ -std=c++11 -I../include -o type.t.exe type.t.cpp && type.t.exe --pass
g++ -std=c++14 -I../include -o type.t.exe type.t.cpp && type.t.exe --pass
g++ -std=c++17 -I../include -o type.t.exe type.t.cpp && type.t.exe --pass
cl -EHsc -I../include type.t.cpp && type.t.exe --pass
#endif
// end of file