We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 056b605 commit fc70715Copy full SHA for fc70715
Lib/test/test_cppext/__init__.py
@@ -35,6 +35,9 @@ def test_build_cpp03(self):
35
def test_build_cpp11(self):
36
self.check_build('_testcpp11ext', std='c++11')
37
38
+ # Only test C++14 on MSVC.
39
+ # On s390x RHEL7, GCC 4.8.5 doesn't support C++14.
40
+ @unittest.skipIf(not support.MS_WINDOWS, "need Windows")
41
def test_build_cpp14(self):
42
self.check_build('_testcpp14ext', std='c++14')
43
0 commit comments