Skip to content

Commit

Permalink
feat: isolate gtests in all packages
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime CLEMENT <[email protected]>
  • Loading branch information
maxime-clem committed Apr 19, 2022
1 parent b2f90a0 commit d6aaafd
Show file tree
Hide file tree
Showing 48 changed files with 62 additions and 61 deletions.
2 changes: 1 addition & 1 deletion common/autoware_auto_common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if(BUILD_TESTING)

# Unit tests
set(TEST_COMMON test_common_gtest)
ament_add_gtest(${TEST_COMMON}
ament_add_ros_isolated_gtest(${TEST_COMMON}
test/gtest_main.cpp
test/test_bool_comparisons.cpp
test/test_byte_reader.cpp
Expand Down
4 changes: 2 additions & 2 deletions common/autoware_auto_common/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<build_depend>builtin_interfaces</build_depend>
<build_depend>eigen</build_depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>
<test_depend>ament_lint_common</test_depend>

<export>
<build_type>ament_cmake</build_type>
Expand Down
2 changes: 1 addition & 1 deletion common/autoware_auto_geometry/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if(BUILD_TESTING)
test/src/test_common_2d.cpp
test/src/test_intersection.cpp
)
ament_add_gtest(${GEOMETRY_GTEST} ${GEOMETRY_SRC})
ament_add_ros_isolated_gtest(${GEOMETRY_GTEST} ${GEOMETRY_SRC})
autoware_set_compile_options(${GEOMETRY_GTEST})
target_compile_options(${GEOMETRY_GTEST} PRIVATE -Wno-conversion -Wno-sign-conversion)
target_include_directories(${GEOMETRY_GTEST} PRIVATE "test/include" "include")
Expand Down
2 changes: 1 addition & 1 deletion common/autoware_auto_geometry/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<depend>autoware_auto_vehicle_msgs</depend>
<depend>geometry_msgs</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>osrf_testing_tools_cpp</test_depend>
<!-- <test_depend>ament_lint_auto</test_depend> -->
<!-- <test_depend>ament_lint_common</test_depend> -->
Expand Down
2 changes: 1 addition & 1 deletion common/autoware_auto_tf2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if(BUILD_TESTING)
# Linters
ament_lint_auto_find_test_dependencies()
# Unit test
ament_add_gtest(test_tf2_autoware_auto_msgs test/test_tf2_autoware_auto_msgs.cpp)
ament_add_ros_isolated_gtest(test_tf2_autoware_auto_msgs test/test_tf2_autoware_auto_msgs.cpp)
autoware_set_compile_options(test_tf2_autoware_auto_msgs)
target_include_directories(test_tf2_autoware_auto_msgs PRIVATE "include")
ament_target_dependencies(test_tf2_autoware_auto_msgs
Expand Down
2 changes: 1 addition & 1 deletion common/autoware_auto_tf2/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<depend>tf2</depend>
<depend>tf2_ros</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<!-- <test_depend>ament_lint_auto</test_depend> -->
<!-- <test_depend>ament_lint_common</test_depend> -->

Expand Down
2 changes: 1 addition & 1 deletion common/autoware_point_types/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if(BUILD_TESTING)

find_package(ament_cmake_gtest REQUIRED)

ament_add_gtest(test_autoware_point_types
ament_add_ros_isolated_gtest(test_autoware_point_types
test/test_point_types.cpp
)
target_include_directories(test_autoware_point_types
Expand Down
2 changes: 1 addition & 1 deletion common/autoware_point_types/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<depend>pcl_ros</depend>
<depend>point_cloud_msg_wrapper</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>
<test_depend>point_cloud_msg_wrapper</test_depend>
Expand Down
2 changes: 1 addition & 1 deletion common/fake_test_node/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if(BUILD_TESTING)
ament_lint_auto_find_test_dependencies()

find_package(ament_cmake_gtest REQUIRED)
ament_add_gtest(test_fake_test_node
ament_add_ros_isolated_gtest(test_fake_test_node
test/test_fake_test_node.cpp
)
autoware_set_compile_options(test_fake_test_node)
Expand Down
2 changes: 1 addition & 1 deletion common/fake_test_node/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<buildtool_depend>ament_cmake_auto</buildtool_depend>
<buildtool_depend>autoware_auto_cmake</buildtool_depend>

<depend>ament_cmake_gtest</depend>
<depend>ament_cmake_ros</depend>
<depend>autoware_auto_common</depend>
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>
Expand Down
2 changes: 1 addition & 1 deletion common/interpolation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if(BUILD_TESTING)

file(GLOB_RECURSE test_files test/**/*.cpp)

ament_add_gtest(test_interpolation ${test_files})
ament_add_ros_isolated_gtest(test_interpolation ${test_files})

target_link_libraries(test_interpolation
interpolation
Expand Down
1 change: 1 addition & 0 deletions common/interpolation/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<depend>tier4_autoware_utils</depend>

<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
2 changes: 1 addition & 1 deletion common/motion_testing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if(BUILD_TESTING)
# Linters
ament_lint_auto_find_test_dependencies()
# Unit test
ament_add_gtest(motion_testing_unit_tests
ament_add_ros_isolated_gtest(motion_testing_unit_tests
test/gtest_main.cpp
test/constant_trajectory.cpp
test/trajectory_checks.cpp)
Expand Down
2 changes: 1 addition & 1 deletion common/motion_testing/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<build_depend>tf2_geometry_msgs</build_depend>
<build_depend>time_utils</build_depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<!-- <test_depend>ament_lint_auto</test_depend> -->
<!-- <test_depend>ament_lint_common</test_depend> -->

Expand Down
2 changes: 1 addition & 1 deletion common/osqp_interface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ if(BUILD_TESTING)
test/test_csc_matrix_conv.cpp
)
set(TEST_OSQP_INTERFACE_EXE test_osqp_interface)
ament_add_gtest(${TEST_OSQP_INTERFACE_EXE} ${TEST_SOURCES})
ament_add_ros_isolated_gtest(${TEST_OSQP_INTERFACE_EXE} ${TEST_SOURCES})
autoware_set_compile_options(${TEST_OSQP_INTERFACE_EXE})
target_link_libraries(${TEST_OSQP_INTERFACE_EXE} ${PROJECT_NAME})
endif()
Expand Down
2 changes: 1 addition & 1 deletion common/osqp_interface/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>eigen</test_depend>
<!-- <test_depend>ament_lint_auto</test_depend> -->
<!-- <test_depend>ament_lint_common</test_depend> -->
Expand Down
2 changes: 1 addition & 1 deletion common/signal_processing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ament_auto_add_library(lowpass_filter_1d SHARED
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
ament_add_gtest(test_signal_processing
ament_add_ros_isolated_gtest(test_signal_processing
test/src/lowpass_filter_1d_test.cpp
)
target_link_libraries(test_signal_processing
Expand Down
2 changes: 1 addition & 1 deletion common/signal_processing/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<buildtool_depend>ament_cmake_auto</buildtool_depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
2 changes: 1 addition & 1 deletion common/tier4_api_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if(BUILD_TESTING)
find_package(ament_cmake_gtest REQUIRED)
include_directories(include)
ament_lint_auto_find_test_dependencies()
ament_add_gtest(${PROJECT_NAME}_test test/test.cpp)
ament_add_ros_isolated_gtest(${PROJECT_NAME}_test test/test.cpp)
ament_target_dependencies(${PROJECT_NAME}_test rclcpp tier4_external_api_msgs)
endif()

Expand Down
2 changes: 1 addition & 1 deletion common/tier4_api_utils/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<depend>rclcpp</depend>
<depend>tier4_external_api_msgs</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>
<test_depend>rclcpp</test_depend>
Expand Down
2 changes: 1 addition & 1 deletion common/tier4_autoware_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if(BUILD_TESTING)

file(GLOB_RECURSE test_files test/**/*.cpp)

ament_add_gtest(test_tier4_autoware_utils ${test_files})
ament_add_ros_isolated_gtest(test_tier4_autoware_utils ${test_files})

target_link_libraries(test_tier4_autoware_utils
tier4_autoware_utils
Expand Down
2 changes: 1 addition & 1 deletion common/tier4_autoware_utils/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<depend>tier4_debug_msgs</depend>
<depend>visualization_msgs</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
2 changes: 1 addition & 1 deletion common/vehicle_constants_manager/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ autoware_set_compile_options(${PROJECT_NAME})
# # Unit tests
# set(TEST_SOURCES test/test_vehicle_constants_manager.cpp)
# set(TEST_VEHICLE_CONSTANTS_MANAGER_EXE test_vehicle_constants_manager)
# ament_add_gtest(${TEST_VEHICLE_CONSTANTS_MANAGER_EXE} ${TEST_SOURCES})
# ament_add_ros_isolated_gtest(${TEST_VEHICLE_CONSTANTS_MANAGER_EXE} ${TEST_SOURCES})
# autoware_set_compile_options(${TEST_VEHICLE_CONSTANTS_MANAGER_EXE})
# target_link_libraries(${TEST_VEHICLE_CONSTANTS_MANAGER_EXE} ${PROJECT_NAME})
# endif()
Expand Down
2 changes: 1 addition & 1 deletion common/vehicle_constants_manager/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>autoware_auto_cmake</test_depend>

<export>
Expand Down
4 changes: 2 additions & 2 deletions control/trajectory_follower/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ if(BUILD_TESTING)
test/test_lowpass_filter.cpp
)
set(TEST_LATERAL_CONTROLLER_EXE test_lateral_controller)
ament_add_gtest(${TEST_LATERAL_CONTROLLER_EXE} ${TEST_LAT_SOURCES})
ament_add_ros_isolated_gtest(${TEST_LATERAL_CONTROLLER_EXE} ${TEST_LAT_SOURCES})
autoware_set_compile_options(${TEST_LATERAL_CONTROLLER_EXE})
target_link_libraries(${TEST_LATERAL_CONTROLLER_EXE} ${LATERAL_CONTROLLER_LIB})

Expand All @@ -111,7 +111,7 @@ if(BUILD_TESTING)
test/test_longitudinal_controller_utils.cpp
)
set(TEST_LONGITUDINAL_CONTROLLER_EXE test_longitudinal_controller)
ament_add_gtest(${TEST_LONGITUDINAL_CONTROLLER_EXE} ${TEST_LON_SOURCES})
ament_add_ros_isolated_gtest(${TEST_LONGITUDINAL_CONTROLLER_EXE} ${TEST_LON_SOURCES})
autoware_set_compile_options(${TEST_LONGITUDINAL_CONTROLLER_EXE})
target_link_libraries(${TEST_LONGITUDINAL_CONTROLLER_EXE} ${LONGITUDINAL_CONTROLLER_LIB})
endif()
Expand Down
2 changes: 1 addition & 1 deletion control/trajectory_follower/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<depend>tf2</depend>
<depend>tf2_ros</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>eigen</test_depend>
<!-- <test_depend>ament_lint_auto</test_depend> -->
<!-- <test_depend>ament_lint_common</test_depend> -->
Expand Down
2 changes: 1 addition & 1 deletion control/vehicle_cmd_gate/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()

ament_add_gtest(test_vehicle_cmd_gate
ament_add_ros_isolated_gtest(test_vehicle_cmd_gate
test/src/test_main.cpp
test/src/test_vehicle_cmd_filter.cpp
)
Expand Down
2 changes: 1 addition & 1 deletion control/vehicle_cmd_gate/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<depend>tier4_vehicle_msgs</depend>
<depend>vehicle_info_util</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
2 changes: 1 addition & 1 deletion localization/ekf_localizer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ament_target_dependencies(ekf_localizer kalman_filter)

# if(BUILD_TESTING)
# find_package(ament_cmake_gtest REQUIRED)
# ament_add_gtest(ekf_localizer-test test/test_ekf_localizer.test
# ament_add_ros_isolated_gtest(ekf_localizer-test test/test_ekf_localizer.test
# test/src/test_ekf_localizer.cpp
# src/ekf_localizer.cpp
# src/kalman_filter/kalman_filter.cpp
Expand Down
2 changes: 1 addition & 1 deletion localization/ekf_localizer/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<depend>tier4_autoware_utils</depend>
<depend>tier4_debug_msgs</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
12 changes: 6 additions & 6 deletions map/lanelet2_extension/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,16 @@ target_link_libraries(autoware_lanelet2_validation
)

if(BUILD_TESTING)
find_package(ament_cmake_gtest REQUIRED)
ament_add_gtest(message_conversion-test test/src/test_message_conversion.cpp)
find_package(ament_cmake_ros REQUIRED)
ament_add_ros_isolated_gtest(message_conversion-test test/src/test_message_conversion.cpp)
target_link_libraries(message_conversion-test lanelet2_extension_lib)
ament_add_gtest(projector-test test/src/test_projector.cpp)
ament_add_ros_isolated_gtest(projector-test test/src/test_projector.cpp)
target_link_libraries(projector-test lanelet2_extension_lib)
ament_add_gtest(query-test test/src/test_query.cpp)
ament_add_ros_isolated_gtest(query-test test/src/test_query.cpp)
target_link_libraries(query-test lanelet2_extension_lib)
ament_add_gtest(regulatory_elements-test test/src/test_regulatory_elements.cpp)
ament_add_ros_isolated_gtest(regulatory_elements-test test/src/test_regulatory_elements.cpp)
target_link_libraries(regulatory_elements-test lanelet2_extension_lib)
ament_add_gtest(utilities-test test/src/test_utilities.cpp)
ament_add_ros_isolated_gtest(utilities-test test/src/test_utilities.cpp)
target_link_libraries(utilities-test lanelet2_extension_lib)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
Expand Down
2 changes: 1 addition & 1 deletion map/lanelet2_extension/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<depend>tier4_autoware_utils</depend>
<depend>visualization_msgs</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
4 changes: 2 additions & 2 deletions planning/behavior_velocity_planner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ if(BUILD_TESTING)
src/utilization/util.cpp
)
# Gtest for utilization
ament_add_gtest(utilization-test
ament_add_ros_isolated_gtest(utilization-test
test/src/test_state_machine.cpp
test/src/test_arc_lane_util.cpp
test/src/test_utilization.cpp
Expand All @@ -326,7 +326,7 @@ if(BUILD_TESTING)
)

# Gtest for occlusion spot
ament_add_gtest(occlusion_spot-test
ament_add_ros_isolated_gtest(occlusion_spot-test
test/src/test_occlusion_spot_utils.cpp
test/src/test_risk_predictive_braking.cpp
test/src/test_grid_utils.cpp
Expand Down
2 changes: 1 addition & 1 deletion planning/behavior_velocity_planner/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<depend>vehicle_info_util</depend>
<depend>visualization_msgs</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
2 changes: 1 addition & 1 deletion planning/freespace_planning_algorithms/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if(BUILD_TESTING)
ament_lint_auto_find_test_dependencies()

find_package(ament_cmake_gtest REQUIRED)
ament_add_gtest(freespace_planning_algorithms-test
ament_add_ros_isolated_gtest(freespace_planning_algorithms-test
test/src/test_freespace_planning_algorithms.cpp
)
target_link_libraries(freespace_planning_algorithms-test
Expand Down
2 changes: 1 addition & 1 deletion planning/freespace_planning_algorithms/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<depend>tf2_geometry_msgs</depend>
<depend>tier4_autoware_utils</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
2 changes: 1 addition & 1 deletion planning/planning_error_monitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ rclcpp_components_register_node(invalid_trajectory_publisher_node
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
ament_add_gtest(test_planning_error_monitor
ament_add_ros_isolated_gtest(test_planning_error_monitor
test/src/test_main.cpp
test/src/test_planning_error_monitor_functions.cpp
test/src/test_planning_error_monitor_helper.hpp
Expand Down
2 changes: 1 addition & 1 deletion planning/planning_error_monitor/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<depend>tier4_autoware_utils</depend>
<depend>visualization_msgs</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
2 changes: 1 addition & 1 deletion planning/planning_evaluator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ rclcpp_components_register_node(${PROJECT_NAME}_node
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
ament_add_gtest(test_${PROJECT_NAME}
ament_add_ros_isolated_gtest(test_${PROJECT_NAME}
test/test_planning_evaluator_node.cpp
)
target_link_libraries(test_${PROJECT_NAME}
Expand Down
2 changes: 1 addition & 1 deletion planning/planning_evaluator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<depend>tf2_ros</depend>
<depend>tier4_autoware_utils</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
Loading

0 comments on commit d6aaafd

Please sign in to comment.