Skip to content

Commit 27383c8

Browse files
committed
remove buffer size overflow test
1 parent 1ed8d6c commit 27383c8

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

system_test/test.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -776,13 +776,19 @@ def test_cpp_tls_example(self):
776776

777777
def test_cpp_array_example(self):
778778
self._test_array_example(
779-
'line_sender_cpp_example_array',
780-
'cpp_market_orders')
779+
'line_sender_cpp_example_array_byte_strides',
780+
'cpp_market_orders_byte_strides', )
781+
self._test_array_example(
782+
'line_sender_cpp_example_array_elem_strides',
783+
'cpp_market_orders_elem_strides', )
781784

782785
def test_c_array_example(self):
783786
self._test_array_example(
784-
'line_sender_c_example_array',
785-
'market_orders')
787+
'line_sender_c_example_array_byte_strides',
788+
'market_orders_byte_strides', )
789+
self._test_array_example(
790+
'line_sender_c_example_array_elem_strides',
791+
'market_orders_elem_strides', )
786792

787793
def _test_array_example(self, bin_name, table_name):
788794
if self.expected_protocol_version < qls.ProtocolVersion.V2:
@@ -1200,7 +1206,7 @@ def run_with_fixtures(args):
12001206
sys.exit(1)
12011207
finally:
12021208
if TLS_PROXY_FIXTURE:
1203-
TLS_PROXY_FIXTURE.stop()
1209+
TLS_PROXY_FIXTURE.stop()
12041210
finally:
12051211
QDB_FIXTURE.stop()
12061212

0 commit comments

Comments
 (0)