Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-server-udp
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-server-udp
Commits
d8d60215
Commit
d8d60215
authored
6 years ago
by
armatusmiles
Browse files
Options
Downloads
Patches
Plain Diff
[+] libdap-test module
parent
c66341ef
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitmodules
+3
-0
3 additions, 0 deletions
.gitmodules
CMakeLists.txt
+5
-0
5 additions, 0 deletions
CMakeLists.txt
test/CMakeLists.txt
+18
-0
18 additions, 0 deletions
test/CMakeLists.txt
test/libdap-test
+1
-0
1 addition, 0 deletions
test/libdap-test
test/main.c
+5
-0
5 additions, 0 deletions
test/main.c
with
32 additions
and
0 deletions
.gitmodules
+
3
−
0
View file @
d8d60215
[submodule "libdap-server-core"]
path = libdap-server-core
url = https://github.com/kelvinblockchain/libdap-server-core.git
[submodule "test/libdap-test"]
path = test/libdap-test
url = https://github.com/kelvinblockchain/libdap-test.git
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
5
−
0
View file @
d8d60215
...
...
@@ -3,6 +3,11 @@ project (dap_udp_server C)
add_subdirectory
(
libdap-server-core
)
if
(
BUILD_DAP_UDP_SERVER_TESTS
)
enable_testing
()
add_subdirectory
(
test
)
endif
()
set
(
DAP_UDP_SERVER_SRCS dap_udp_server.c dap_udp_client.h dap_udp_client.c
)
add_library
(
${
PROJECT_NAME
}
STATIC
${
DAP_UDP_SERVER_SRCS
}
)
...
...
This diff is collapsed.
Click to expand it.
test/CMakeLists.txt
0 → 100644
+
18
−
0
View file @
d8d60215
cmake_minimum_required
(
VERSION 3.0
)
project
(
udp-server-test
)
set
(
CMAKE_C_STANDARD 11
)
add_subdirectory
(
libdap-test
)
file
(
GLOB SRC *.h *.c
)
add_executable
(
${
PROJECT_NAME
}
${
SRC
}
)
target_link_libraries
(
${
PROJECT_NAME
}
dap_test
)
add_test
(
NAME udp-server-test
COMMAND udp-server-test
)
This diff is collapsed.
Click to expand it.
libdap-test
@
e542fdbc
Subproject commit e542fdbcbced6ce9b1c4cae4a92fa8580403941e
This diff is collapsed.
Click to expand it.
test/main.c
0 → 100644
+
5
−
0
View file @
d8d60215
#include
<stdio.h>
int
main
()
{
return
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment