tests: fix formatting of run-in.cpp
authorSimon Marchi <simon.marchi@efficios.com>
Thu, 1 Jun 2023 00:59:54 +0000 (20:59 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 5 Jun 2023 18:04:23 +0000 (14:04 -0400)
Done by running `tools/format-cpp`.

Change-Id: I6b07f4bc24176e5bd7f4a9f164b0ba3ee4c00fac
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/10189
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
Tested-by: jenkins <jenkins@lttng.org>
tests/lib/utils/run-in.cpp

index 2c2a53fc2f31ebd51a15f6a55e1be04490e01c9e..9c682522eac9b3116d0ded0a0e77ea2cf4cbc943 100644 (file)
@@ -96,7 +96,7 @@ static DummySinkData& dummySinkDataFromSelfCompSink(bt_self_component_sink * con
 }
 
 static bt_component_class_sink_graph_is_configured_method_status
 }
 
 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");
 {
     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;
 }
 
     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;
 {
     const auto& data = dummySinkDataFromSelfCompSink(self);
     bt_message_array_const msgs;
This page took 0.025424 seconds and 4 git commands to generate.