-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(fake_test_node): prefix package and namespace with autoware
Signed-off-by: Esteve Fernandez <[email protected]>
- Loading branch information
Showing
16 changed files
with
26 additions
and
43 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ common/autoware_adapi_specs/** [email protected] [email protected] | |
common/autoware_auto_common/** [email protected] [email protected] [email protected] [email protected] | ||
common/autoware_component_interface_specs/** [email protected] [email protected] | ||
common/autoware_component_interface_tools/** [email protected] | ||
common/autoware_fake_test_node/** [email protected] [email protected] [email protected] [email protected] | ||
common/autoware_geography_utils/** [email protected] | ||
common/autoware_goal_distance_calculator/** [email protected] | ||
common/autoware_grid_map_utils/** [email protected] | ||
|
@@ -27,7 +28,6 @@ common/autoware_universe_utils/** [email protected] [email protected] | |
common/autoware_vehicle_info_utils/** [email protected] [email protected] [email protected] [email protected] | ||
common/bag_time_manager_rviz_plugin/** [email protected] | ||
common/component_interface_utils/** [email protected] [email protected] | ||
common/fake_test_node/** [email protected] [email protected] [email protected] [email protected] | ||
common/global_parameter_loader/** [email protected] | ||
common/glog_component/** [email protected] | ||
common/tier4_adapi_rviz_plugin/** [email protected] [email protected] [email protected] | ||
|
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
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
common/fake_test_node/CMakeLists.txt → ...on/autoware_fake_test_node/CMakeLists.txt
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
cmake_minimum_required(VERSION 3.14) | ||
project(fake_test_node) | ||
project(autoware_fake_test_node) | ||
|
||
find_package(autoware_cmake REQUIRED) | ||
autoware_package() | ||
|
||
ament_auto_add_library(fake_test_node SHARED src/fake_test_node.cpp) | ||
ament_auto_add_library(${PROJECT_NAME} SHARED src/fake_test_node.cpp) | ||
|
||
if(BUILD_TESTING) | ||
ament_add_ros_isolated_gtest(test_fake_test_node | ||
test/test_fake_test_node.cpp | ||
) | ||
add_dependencies(test_fake_test_node fake_test_node) | ||
target_link_libraries(test_fake_test_node fake_test_node) | ||
add_dependencies(test_fake_test_node ${PROJECT_NAME}) | ||
target_link_libraries(test_fake_test_node ${PROJECT_NAME}) | ||
endif() | ||
|
||
ament_auto_package() |
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
common/fake_test_node/package.xml → common/autoware_fake_test_node/package.xml
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>fake_test_node</name> | ||
<name>autoware_fake_test_node</name> | ||
<version>0.38.0</version> | ||
<description>A fake node that we can use in the integration-like cpp tests.</description> | ||
<maintainer email="[email protected]">Apex.AI, Inc.</maintainer> | ||
|
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
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
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
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