tests: Remove test-just-sockets-no-ssl

This call sequence is included in test-display-base used in different
tests, no reason to have this test.
Also this test is not actually used for automated tests.

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Christophe Fergeau <cfergeau@redhat.com>
This commit is contained in:
Frediano Ziglio 2018-01-16 14:39:20 +00:00
parent 5998e34ffb
commit 8d79d8887d
3 changed files with 0 additions and 37 deletions

View File

@ -13,7 +13,6 @@ test-display-streaming
test-display-width-stride
test-empty-success
test-fail-on-null-core-interface
test-just-sockets-no-ssl
test-loop
test-options
test-playback

View File

@ -64,7 +64,6 @@ check_PROGRAMS = \
noinst_PROGRAMS = \
test-display-no-ssl \
test-display-streaming \
test-just-sockets-no-ssl \
test-playback \
test-display-resolution-changes \
test-two-servers \

View File

@ -1,35 +0,0 @@
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
Copyright (C) 2009-2015 Red Hat, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <sys/select.h>
#include <spice.h>
#include "basic-event-loop.h"
int main(void)
{
SpiceServer *server = spice_server_new();
SpiceCoreInterface *core = basic_event_loop_init();
spice_server_set_port(server, 5912);
spice_server_set_noauth(server);
spice_server_init(server, core);
basic_event_loop_mainloop();
return 0;
}