Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
1b2d8ba5
Commit
1b2d8ba5
authored
3 weeks ago
by
François-Simon Fauteux-Chapleau
Browse files
Options
Downloads
Patches
Plain Diff
cmake: add missing tests
GitLab:
#1124
Change-Id: I010607a95603caec89710fe2bcb587fd2c602ed6
parent
c210225d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+20
-0
20 additions, 0 deletions
CMakeLists.txt
with
20 additions
and
0 deletions
CMakeLists.txt
+
20
−
0
View file @
1b2d8ba5
...
...
@@ -998,6 +998,26 @@ else()
target_link_libraries
(
ut_audio_frame_resizer ut_library
)
add_test
(
NAME audio_frame_resizer COMMAND ut_audio_frame_resizer
)
add_executable
(
ut_routing_table test/unitTest/swarm/routing_table.cpp
)
target_link_libraries
(
ut_routing_table ut_library
)
add_test
(
NAME routing_table COMMAND ut_routing_table
)
add_executable
(
ut_sipcall test/unitTest/call/sipcall.cpp
)
target_link_libraries
(
ut_sipcall ut_library
)
add_test
(
NAME sipcall COMMAND ut_sipcall
)
add_executable
(
ut_swarm_conversation test/unitTest/swarm/swarm_conversation.cpp
)
target_link_libraries
(
ut_swarm_conversation ut_library
)
add_test
(
NAME swarm_conversation COMMAND ut_swarm_conversation
)
add_executable
(
ut_swarm_spread test/unitTest/swarm/swarm_spread.cpp
)
target_link_libraries
(
ut_swarm_spread ut_library
)
add_test
(
NAME swarm_spread COMMAND ut_swarm_spread
)
add_executable
(
ut_sip test/sip/sip.cpp test/sip/test_SIP.cpp
)
target_link_libraries
(
ut_sip ut_library
)
add_test
(
NAME sip COMMAND ut_sip
)
if
(
JAMI_PLUGIN
)
add_executable
(
ut_plugins test/unitTest/plugins/plugins.cpp
)
target_link_libraries
(
ut_plugins ut_library
)
...
...
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