summaryrefslogtreecommitdiffstats
path: root/server/tests/test_fail_on_null_core_interface.c
blob: 23261a26ad0541e079e664a4f096b714f6fcaa33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <config.h>
#include <spice.h>

int main(void)
{
    SpiceServer *server = spice_server_new();
    SpiceCoreInterface core;

    spice_server_init(server, &core);
    spice_server_set_port(server, 5911);

    return 0;
}