tests: net: lib: http_server: Rename prototype test suite

"prototype" is ambiguous in this regard, as it doesn't really tell what
the test suite is testing. As tests in this test suite verify core HTTP
server functionality, rename it to "core".

Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
This commit is contained in:
Robert Lubos 2024-07-17 15:45:51 +02:00 committed by Anas Nashif
commit 1e2b2c79a5
5 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.20.0) cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(prototype) project(server_core)
set(BASE_PATH "../../../../../subsys/net/lib/http/") set(BASE_PATH "../../../../../subsys/net/lib/http/")
include_directories(${BASE_PATH}/headers) include_directories(${BASE_PATH}/headers)

View file

@ -13,4 +13,4 @@ common:
- native_posix - native_posix
- native_posix/native/64 - native_posix/native/64
tests: tests:
net.http.server.prototype: {} net.http.server.core: {}