From: Simon Marchi Date: Thu, 1 Jun 2023 00:59:54 +0000 (-0400) Subject: tests: fix formatting of run-in.cpp X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=0ab97251d941e3b2635fcfea9264340e96390895 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 --- 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;