Skip to content
Snippets Groups Projects
Commit 2bb00ebf authored by Mathieu Duponchelle's avatar Mathieu Duponchelle :frog:
Browse files

test-cleanup: bind any port

The meson test suite runs tests in parallel, trying to bind
a single port made the test fail.
parent cd962024
No related branches found
Tags mesa-17.1.0-rc3
No related merge requests found
......@@ -43,6 +43,9 @@ main (int argc, char *argv[])
/* create a server instance */
server = gst_rtsp_server_new ();
/* We just want to bind any port here, so that tests can run in parallel */
gst_rtsp_server_set_service (server, "0");
/* attach the server to the default maincontext */
if ((id = gst_rtsp_server_attach (server, NULL)) == 0)
goto failed;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment