Skip to content

Commit fc70715

Browse files
committed
Skip C++14 test for now on non-Windows platforms
1 parent 056b605 commit fc70715

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Lib/test/test_cppext/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ def test_build_cpp03(self):
3535
def test_build_cpp11(self):
3636
self.check_build('_testcpp11ext', std='c++11')
3737

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")
3841
def test_build_cpp14(self):
3942
self.check_build('_testcpp14ext', std='c++14')
4043

0 commit comments

Comments
 (0)