summaryrefslogtreecommitdiff
path: root/test/regression/web_test/netx_https_testcontrol.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/regression/web_test/netx_https_testcontrol.c')
-rw-r--r--test/regression/web_test/netx_https_testcontrol.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/regression/web_test/netx_https_testcontrol.c b/test/regression/web_test/netx_https_testcontrol.c
index e8ab7818..2d50190a 100644
--- a/test/regression/web_test/netx_https_testcontrol.c
+++ b/test/regression/web_test/netx_https_testcontrol.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
/* This is the test control routine the NetX TCP/IP stack. All tests are dispatched from this routine. */
#include "tx_api.h"
@@ -55,6 +66,7 @@ void netx_https_api_test(void*);
void netx_web_basic_test_application_define(void *);
void netx_web_basic_ecc_test_application_define(void *);
void netx_web_put_basic_test_application_define(void *);
+void netx_web_put_content_length_underflow_test_application_define(void *);
void netx_web_post_basic_test_application_define(void *);
void netx_web_delete_basic_test_application_define(void *);
void netx_web_head_basic_test_application_define(void *);
@@ -80,6 +92,7 @@ void netx_web_concurrent_sessions_test_application_define(void *);
void netx_web_post_basic_test_application_define(void *first_unused_memory);
void netx_web_post_large_packet_test_application_define(void *first_unused_memory);
void netx_web_host_field_test_application_define(void *);
+void netx_web_header_boundary_test_application_define(void *);
void netx_web_chunked_request_test_application_define(void *);
void netx_web_chunked_request_additional_test_application_define(void *);
void netx_web_chunked_response_test_application_define(void *);
@@ -131,6 +144,7 @@ TEST_ENTRY test_control_tests[] =
{netx_web_response_in_multiple_packets_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_connect_three_times_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_put_basic_test_application_define, TEST_TIMEOUT_LOW},
+ {netx_web_put_content_length_underflow_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_post_basic_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_head_basic_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_delete_basic_test_application_define, TEST_TIMEOUT_LOW},
@@ -141,6 +155,7 @@ TEST_ENTRY test_control_tests[] =
{netx_web_concurrent_sessions_test_application_define, TEST_TIMEOUT_MID},
{netx_web_post_large_packet_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_host_field_test_application_define, TEST_TIMEOUT_LOW},
+ {netx_web_header_boundary_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_chunked_response_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_chunked_request_test_application_define, TEST_TIMEOUT_LOW},
{netx_web_chunked_request_additional_test_application_define, TEST_TIMEOUT_LOW},