From 0ab97251d941e3b2635fcfea9264340e96390895 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 31 May 2023 20:59:54 -0400 Subject: [PATCH] tests: fix formatting of run-in.cpp Done by running `tools/format-cpp`. Change-Id: I6b07f4bc24176e5bd7f4a9f164b0ba3ee4c00fac Signed-off-by: Simon Marchi Reviewed-on: https://review.lttng.org/c/babeltrace/+/10189 Reviewed-by: Philippe Proulx Tested-by: jenkins --- tests/lib/utils/run-in.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/lib/utils/run-in.cpp b/tests/lib/utils/run-in.cpp index 2c2a53fc..9c682522 100644 --- a/tests/lib/utils/run-in.cpp +++ b/tests/lib/utils/run-in.cpp @@ -96,7 +96,7 @@ static DummySinkData& dummySinkDataFromSelfCompSink(bt_self_component_sink * con } static bt_component_class_sink_graph_is_configured_method_status -dummySinkGraphIsConfigured(bt_self_component_sink *const self) +dummySinkGraphIsConfigured(bt_self_component_sink * const self) { auto& data = dummySinkDataFromSelfCompSink(self); const auto port = bt_self_component_sink_borrow_input_port_by_name(self, "in"); @@ -106,7 +106,8 @@ dummySinkGraphIsConfigured(bt_self_component_sink *const self) return BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_OK; } -static bt_component_class_sink_consume_method_status dummySinkConsume(bt_self_component_sink *const self) +static bt_component_class_sink_consume_method_status +dummySinkConsume(bt_self_component_sink * const self) { const auto& data = dummySinkDataFromSelfCompSink(self); bt_message_array_const msgs; -- 2.34.1