Skip to content

Commit 9bc0bb3

Browse files
committed
Add test for c++17 and <variant>
1 parent 0e46d2e commit 9bc0bb3

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

unittests/data/cpp_standard_17.hpp

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Copyright 2014-2017 Insight Software Consortium.
2+
// Copyright 2004-2009 Roman Yakovenko.
3+
// Distributed under the Boost Software License, Version 1.0.
4+
// See http://www.boost.org/LICENSE_1_0.txt
5+
6+
// See https://github.com/CastXML/pygccxml/issues/180
7+
// variant introduced in C++17
8+
#include <variant>
9+
std::variant<int, double, float> value;

unittests/test_cpp_standards.py

+9
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,15 @@ def test(self):
4848
RuntimeError,
4949
lambda: parser.parse(["cpp_standards.hpp"], self.config))
5050

51+
def test_cpp17(self):
52+
"""
53+
Test c++17 by setting cflags.
54+
55+
"""
56+
57+
self.config.cflags = "-std=c++17"
58+
parser.parse(["cpp_standard_17.hpp"], self.config)
59+
5160

5261
def create_suite():
5362
suite = unittest.TestSuite()

0 commit comments

Comments
 (0)