Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scord
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Show more breadcrumbs
eu
ADMIRE
scord
Commits
65b81d22
Verified
Commit
65b81d22
authored
2 years ago
by
Alberto Miranda
Browse files
Options
Downloads
Patches
Plain Diff
Improve naming for rpc tests to better separate C tests from C++ ones
parent
114bd127
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!12
Resolve "Execute RPCs tests in CI"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/c/CMakeLists.txt
+22
-22
22 additions, 22 deletions
examples/c/CMakeLists.txt
examples/cxx/CMakeLists.txt
+21
-20
21 additions, 20 deletions
examples/cxx/CMakeLists.txt
with
43 additions
and
42 deletions
examples/c/CMakeLists.txt
+
22
−
22
View file @
65b81d22
...
...
@@ -38,52 +38,52 @@ foreach(example IN LISTS examples_c)
endforeach
()
if
(
SCORD_BUILD_TESTS
)
add_test
(
ADM_register_job_test ADM_register_job ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_register_job_
c_
test ADM_register_job ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_cancel_transfer_test ADM_cancel_transfer ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_cancel_transfer_
c_
test ADM_cancel_transfer ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_connect_data_operation_test ADM_connect_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_connect_data_operation_
c_
test ADM_connect_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_define_data_operation_test ADM_define_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_define_data_operation_
c_
test ADM_define_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_deploy_adhoc_storage_test ADM_deploy_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_deploy_adhoc_storage_
c_
test ADM_deploy_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_finalize_data_operation_test ADM_finalize_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_finalize_data_operation_
c_
test ADM_finalize_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_pending_transfers_test ADM_get_pending_transfers ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_pending_transfers_
c_
test ADM_get_pending_transfers ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_qos_constraints_test ADM_get_qos_constraints ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_qos_constraints_
c_
test ADM_get_qos_constraints ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_statistics_test ADM_get_statistics ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_statistics_
c_
test ADM_get_statistics ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_transfer_priority_test ADM_get_transfer_priority ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_transfer_priority_
c_
test ADM_get_transfer_priority ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_link_transfer_to_data_operation_test ADM_link_transfer_to_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_link_transfer_to_data_operation_
c_
test ADM_link_transfer_to_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_register_adhoc_storage_test ADM_register_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_register_adhoc_storage_
c_
test ADM_register_adhoc_storage ofi+tcp://127.0.0.1:52000
)
# TODO: ADM_register_pfs_storage test is missing because is not working in cpp.
# Will be created when it works in cpp.
add_test
(
ADM_remove_adhoc_storage_test ADM_remove_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_remove_adhoc_storage_
c_
test ADM_remove_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_remove_job_test ADM_remove_job ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_remove_job_
c_
test ADM_remove_job ofi+tcp://127.0.0.1:52000
)
# TODO: ADM_remove_pfs_storage test is missing because is not working in cpp.
# Will be created when it works in cpp.
add_test
(
ADM_set_dataset_information_test ADM_set_dataset_information ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_dataset_information_
c_
test ADM_set_dataset_information ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_io_resources_test ADM_set_io_resources ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_io_resources_
c_
test ADM_set_io_resources ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_qos_constraints_test ADM_set_qos_constraints ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_qos_constraints_
c_
test ADM_set_qos_constraints ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_transfer_priority_test ADM_set_transfer_priority ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_transfer_priority_
c_
test ADM_set_transfer_priority ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_transfer_dataset_test ADM_transfer_dataset ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_transfer_dataset_
c_
test ADM_transfer_dataset ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_update_adhoc_storage_test ADM_update_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_update_adhoc_storage_
c_
test ADM_update_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_update_job_test ADM_update_job ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_update_job_
c_
test ADM_update_job ofi+tcp://127.0.0.1:52000
)
# TODO: ADM_update_pfs_storage test is missing because is not working in cpp.
# Will be created when it works in cpp.
endif
()
\ No newline at end of file
endif
()
This diff is collapsed.
Click to expand it.
examples/cxx/CMakeLists.txt
+
21
−
20
View file @
65b81d22
...
...
@@ -48,45 +48,46 @@ endforeach()
if
(
SCORD_BUILD_TESTS
)
add_test
(
ADM_ping_test ADM_ping ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_cancel_transfer_test ADM_cancel_transfer ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_cancel_transfer_cxx_test ADM_cancel_transfer ofi+tcp://127.0.0.1:52000
)
set_tests_properties
(
ADM_cancel_transfer_cxx_test PROPERTIES LABELS
"ADM_cancel_transfer;cxx"
)
add_test
(
ADM_connect_data_operation_test ADM_connect_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_connect_data_operation_
cxx_
test ADM_connect_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_define_data_operation_test ADM_define_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_define_data_operation_
cxx_
test ADM_define_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_deploy_adhoc_storage_test ADM_deploy_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_deploy_adhoc_storage_
cxx_
test ADM_deploy_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_finalize_data_operation_test ADM_finalize_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_finalize_data_operation_
cxx_
test ADM_finalize_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_pending_transfers_test ADM_get_pending_transfers ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_pending_transfers_
cxx_
test ADM_get_pending_transfers ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_qos_constraints_test ADM_get_qos_constraints ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_qos_constraints_
cxx_
test ADM_get_qos_constraints ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_transfer_priority_test ADM_get_transfer_priority ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_get_transfer_priority_
cxx_
test ADM_get_transfer_priority ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_link_transfer_to_data_operation_test ADM_link_transfer_to_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_link_transfer_to_data_operation_
cxx_
test ADM_link_transfer_to_data_operation ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_register_job_test ADM_register_job ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_register_job_
cxx_
test ADM_register_job ofi+tcp://127.0.0.1:52000
)
# TODO: add_test(ADM_register_pfs_storage_test ADM_register_pfs_storage ofi+tcp://127.0.0.1:52000)
add_test
(
ADM_remove_adhoc_storage_test ADM_remove_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_remove_adhoc_storage_
cxx_
test ADM_remove_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_remove_job_test ADM_remove_job ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_remove_job_
cxx_
test ADM_remove_job ofi+tcp://127.0.0.1:52000
)
# TODO: add_test(ADM_remove_pfs_storage_test ADM_remove_pfs_storage ofi+tcp://127.0.0.1:52000 42)
add_test
(
ADM_set_dataset_information_test ADM_set_dataset_information ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_dataset_information_
cxx_
test ADM_set_dataset_information ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_io_resources_test ADM_set_io_resources ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_io_resources_
cxx_
test ADM_set_io_resources ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_qos_constraints_test ADM_set_qos_constraints ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_qos_constraints_
cxx_
test ADM_set_qos_constraints ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_transfer_priority_test ADM_set_transfer_priority ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_set_transfer_priority_
cxx_
test ADM_set_transfer_priority ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_transfer_dataset_test ADM_transfer_dataset ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_transfer_dataset_
cxx_
test ADM_transfer_dataset ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_update_adhoc_storage_test ADM_update_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_update_adhoc_storage_
cxx_
test ADM_update_adhoc_storage ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_update_job_test ADM_update_job ofi+tcp://127.0.0.1:52000
)
add_test
(
ADM_update_job_
cxx_
test ADM_update_job ofi+tcp://127.0.0.1:52000
)
# TODO: add_test(ADM_update_pfs_storage_test ADM_update_pfs_storage ofi+tcp://127.0.0.1:52000 42)
# TODO: add_test(ADM_update_pfs_storage_
cxx_
test ADM_update_pfs_storage ofi+tcp://127.0.0.1:52000 42)
endif
()
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