tests: fix indentation

This commit is contained in:
Tim-Philipp Müller 2016-02-19 14:41:55 +00:00
parent 9092fce0b0
commit 93e006bd66
2 changed files with 28 additions and 18 deletions

View file

@ -51,6 +51,7 @@ GST_START_TEST (test_one_buffer)
gst_buffer_unref (buffer_out); gst_buffer_unref (buffer_out);
gst_harness_teardown (h); gst_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
static void static void
@ -95,6 +96,7 @@ GST_START_TEST (test_signal_handoffs)
/* cleanup */ /* cleanup */
gst_harness_teardown (h); gst_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
GST_START_TEST (test_sync_on_timestamp) GST_START_TEST (test_sync_on_timestamp)
@ -137,6 +139,7 @@ GST_START_TEST (test_sync_on_timestamp)
gst_buffer_unref (buf); gst_buffer_unref (buf);
gst_harness_teardown (h); gst_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
GST_START_TEST (test_stopping_element_unschedules_sync) 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_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
static Suite * static Suite *

View file

@ -46,6 +46,7 @@ GST_START_TEST(test_harness_element_ref)
gst_harness_teardown (h); gst_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
@ -67,6 +68,7 @@ GST_START_TEST(test_src_harness)
gst_harness_teardown (h); gst_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
GST_START_TEST (test_src_harness_no_forwarding) 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_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
GST_START_TEST (test_add_sink_harness_without_sinkpad) 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_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
static GstEvent * 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_stress_thread_stop (e_thread);
gst_harness_teardown (h); gst_harness_teardown (h);
} }
GST_END_TEST; GST_END_TEST;
static Suite * 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_src_harness_no_forwarding);
tcase_add_test (tc_chain, test_add_sink_harness_without_sinkpad); 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; return s;
} }