mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
tests: fix indentation
This commit is contained in:
parent
9092fce0b0
commit
93e006bd66
2 changed files with 28 additions and 18 deletions
|
@ -51,6 +51,7 @@ GST_START_TEST (test_one_buffer)
|
|||
gst_buffer_unref (buffer_out);
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
static void
|
||||
|
@ -95,6 +96,7 @@ GST_START_TEST (test_signal_handoffs)
|
|||
/* cleanup */
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
GST_START_TEST (test_sync_on_timestamp)
|
||||
|
@ -137,6 +139,7 @@ GST_START_TEST (test_sync_on_timestamp)
|
|||
gst_buffer_unref (buf);
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
GST_START_TEST (test_stopping_element_unschedules_sync)
|
||||
|
@ -174,6 +177,7 @@ GST_START_TEST (test_stopping_element_unschedules_sync)
|
|||
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
static Suite *
|
||||
|
|
|
@ -46,6 +46,7 @@ GST_START_TEST(test_harness_element_ref)
|
|||
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
|
||||
|
@ -67,6 +68,7 @@ GST_START_TEST(test_src_harness)
|
|||
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
GST_START_TEST (test_src_harness_no_forwarding)
|
||||
|
@ -105,6 +107,7 @@ GST_START_TEST(test_src_harness_no_forwarding)
|
|||
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
GST_START_TEST (test_add_sink_harness_without_sinkpad)
|
||||
|
@ -115,6 +118,7 @@ GST_START_TEST(test_add_sink_harness_without_sinkpad)
|
|||
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
static GstEvent *
|
||||
|
@ -160,6 +164,7 @@ GST_START_TEST (test_forward_event_and_query_to_sink_harness_while_teardown)
|
|||
gst_harness_stress_thread_stop (e_thread);
|
||||
gst_harness_teardown (h);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
static Suite *
|
||||
|
@ -175,7 +180,8 @@ gst_harness_suite (void)
|
|||
tcase_add_test (tc_chain, test_src_harness_no_forwarding);
|
||||
tcase_add_test (tc_chain, test_add_sink_harness_without_sinkpad);
|
||||
|
||||
tcase_add_test (tc_chain, test_forward_event_and_query_to_sink_harness_while_teardown);
|
||||
tcase_add_test (tc_chain,
|
||||
test_forward_event_and_query_to_sink_harness_while_teardown);
|
||||
|
||||
return s;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue