summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-06-18 09:34:29 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-06-18 09:34:29 +0100
commit36a3cb5f96cdeba361d22c31e3d0e3995843374d (patch)
treefd83117893f203775a53c71214c82b8a379b9441
parent5544b3f2922eaf49da066e0720f4367cb40642ea (diff)
rtsp: Fix for new insanity checklist API
-rw-r--r--tests/insanity-test-gst-rtsp.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/insanity-test-gst-rtsp.c b/tests/insanity-test-gst-rtsp.c
index ae8f9cc..33e032c 100644
--- a/tests/insanity-test-gst-rtsp.c
+++ b/tests/insanity-test-gst-rtsp.c
@@ -745,27 +745,27 @@ main (int argc, char **argv)
"Stream time to playback for before seeking, in seconds", NULL, TRUE, 5);
insanity_test_add_checklist_item (test, "valid-setup",
- "The setup given in arguments makes sense", NULL);
+ "The setup given in arguments makes sense", NULL, FALSE);
insanity_test_add_checklist_item (test, "server-created",
- "The RTSP server was created succesfully", NULL);
+ "The RTSP server was created succesfully", NULL, FALSE);
insanity_test_add_checklist_item (test, "pause",
- "The pipeline could be paused", NULL);
+ "The pipeline could be paused", NULL, FALSE);
insanity_test_add_checklist_item (test, "play",
- "The pipeline could be played", NULL);
+ "The pipeline could be played", NULL, FALSE);
insanity_test_add_checklist_item (test, "wait",
- "The pipeline could stay in playback mode", NULL);
+ "The pipeline could stay in playback mode", NULL, FALSE);
insanity_test_add_checklist_item (test, "seek", "The pipeline could seek",
- NULL);
+ NULL, FALSE);
insanity_test_add_checklist_item (test, "protocol-udp-unicast",
- "The RTP transport could be set to UDP unicast", NULL);
+ "The RTP transport could be set to UDP unicast", NULL, FALSE);
insanity_test_add_checklist_item (test, "protocol-udp-multicast",
- "The RTP transport could be set to UDP multicast", NULL);
+ "The RTP transport could be set to UDP multicast", NULL, FALSE);
insanity_test_add_checklist_item (test, "protocol-tcp",
- "The RTP transport could be set to TCP", NULL);
+ "The RTP transport could be set to TCP", NULL, FALSE);
insanity_test_add_checklist_item (test, "protocol-http",
- "The RTP transport could be set to HTTP", NULL);
+ "The RTP transport could be set to HTTP", NULL, FALSE);
insanity_test_add_checklist_item (test, "position-queried",
- "Stream position could be determined", NULL);
+ "Stream position could be determined", NULL, FALSE);
insanity_test_add_extra_info (test, "launch-line",
"The launch line gst-rtsp-server was configued with");