-
Notifications
You must be signed in to change notification settings - Fork 788
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix communication tests not run (#3614)
* Refs #19054: Fix communication tests not runned Signed-off-by: JesusPoderoso <jesuspoderoso@eprosima.com> * Refs #19054: Clean before running the test Signed-off-by: Eduardo Ponz <eduardoponz@eprosima.com> * Refs #19054: Make test_wrapper.cmake a configurable file Signed-off-by: Eduardo Ponz <eduardoponz@eprosima.com> * Refs #19054: Fix missing python path Signed-off-by: JesusPoderoso <jesuspoderoso@eprosima.com> --------- Signed-off-by: JesusPoderoso <jesuspoderoso@eprosima.com> Signed-off-by: Eduardo Ponz <eduardoponz@eprosima.com> Co-authored-by: Eduardo Ponz <eduardoponz@eprosima.com>
- Loading branch information
1 parent
ab54e17
commit 394d2d1
Showing
4 changed files
with
34 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
find_package(PythonInterp 3) | ||
|
||
# Clean first so the exit code comes from the second process | ||
message(STATUS "test_wrapper - Running command: ${PYTHON_EXECUTABLE} @PROJECT_BINARY_DIR@/tools/fastdds/fastdds.py shm clean") | ||
execute_process(COMMAND ${PYTHON_EXECUTABLE} @PROJECT_BINARY_DIR@/tools/fastdds/fastdds.py shm clean) | ||
|
||
message(STATUS "test_wrapper - Running command: ${ACTUAL_TEST} ${ACTUAL_ARGS}") | ||
execute_process(COMMAND ${ACTUAL_TEST} ${ACTUAL_ARGS}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters