Skip to content

Commit 1c719e3

Browse files
committed
Remove c++17 test
1 parent af17466 commit 1c719e3

File tree

3 files changed

+1
-16
lines changed

3 files changed

+1
-16
lines changed

test/src/CMakeLists.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,10 @@ SET_TARGET_PROPERTIES(sum_c
4545

4646
# Other
4747
ADD_EXECUTABLE(stderr-write stderr-write.c)
48-
ADD_EXECUTABLE(cpp17_cxx cpp17_cxx.cc)
4948

5049
ADD_CUSTOM_TARGET(test-binaries
5150
DEPENDS
5251
1-sec-prog 1-sec-evil infinite-loop 1-sec-prog-th
5352
leak-tiny_32 leak-huge_32 leak-dive_32
5453
leak-tiny_64 leak-huge_64 leak-dive_64
55-
sum_c sum_cxx stderr-write cpp17_cxx)
54+
sum_c sum_cxx stderr-write)

test/src/cpp17_cxx.cc

-10
This file was deleted.

test/testsuits/test_langs.py

-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
class TestLanguages(unittest.TestCase):
99
C_PROGRAM_PATH = os.path.join(TEST_BIN_PATH, 'sum_c')
1010
CXX_PROGRAM_PATH = os.path.join(TEST_BIN_PATH, 'sum_cxx')
11-
CPP17_PROGRAM_PATH = os.path.join(TEST_BIN_PATH, 'cpp17_cxx')
1211
PYTHON2_PROGRAM_PATH = os.path.join(
1312
SOURCE_PATH, './test/src/sum_python2.py')
1413
PYTHON3_PROGRAM_PATH = os.path.join(
@@ -46,6 +45,3 @@ def test_python3_5(self):
4645
def test_python3_9(self):
4746
self.perform(self.PYTHON3_9_PROGRAM_PATH, box='python3_9',
4847
extra_options=['--memory-limit', "100M"])
49-
50-
def test_cpp17(self):
51-
self.perform(self.CPP17_PROGRAM_PATH)

0 commit comments

Comments
 (0)