File tree 3 files changed +1
-16
lines changed
3 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -45,11 +45,10 @@ SET_TARGET_PROPERTIES(sum_c
45
45
46
46
# Other
47
47
ADD_EXECUTABLE (stderr-write stderr-write.c)
48
- ADD_EXECUTABLE (cpp17_cxx cpp17_cxx.cc)
49
48
50
49
ADD_CUSTOM_TARGET (test -binaries
51
50
DEPENDS
52
51
1-sec-prog 1-sec-evil infinite-loop 1-sec-prog-th
53
52
leak-tiny_32 leak-huge_32 leak-dive_32
54
53
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)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 8
8
class TestLanguages (unittest .TestCase ):
9
9
C_PROGRAM_PATH = os .path .join (TEST_BIN_PATH , 'sum_c' )
10
10
CXX_PROGRAM_PATH = os .path .join (TEST_BIN_PATH , 'sum_cxx' )
11
- CPP17_PROGRAM_PATH = os .path .join (TEST_BIN_PATH , 'cpp17_cxx' )
12
11
PYTHON2_PROGRAM_PATH = os .path .join (
13
12
SOURCE_PATH , './test/src/sum_python2.py' )
14
13
PYTHON3_PROGRAM_PATH = os .path .join (
@@ -46,6 +45,3 @@ def test_python3_5(self):
46
45
def test_python3_9 (self ):
47
46
self .perform (self .PYTHON3_9_PROGRAM_PATH , box = 'python3_9' ,
48
47
extra_options = ['--memory-limit' , "100M" ])
49
-
50
- def test_cpp17 (self ):
51
- self .perform (self .CPP17_PROGRAM_PATH )
You can’t perform that action at this time.
0 commit comments