-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-xstart.c
59 lines (52 loc) · 1.6 KB
/
test-xstart.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* test-xstart - test that we are able to start X
*
* Copyright 2011 Enrico Zini <enrico@enricozini.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "log.h"
#include "xserver.h"
#include "test.h"
#include "common.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char* argv[])
{
test_start("test-xstart", false);
struct nodm_xserver srv;
nodm_xserver_init(&srv);
const char* server_argv[] = {
getenv("DISPLAY") == NULL ? "/usr/bin/X" : "/usr/bin/Xnest",
":1",
NULL
};
srv.argv = server_argv;
srv.name = ":1";
int res = nodm_xserver_start(&srv);
if (res != E_SUCCESS)
{
fprintf(stderr, "nodm_xserver_start return code: %d\n", res);
return res;
}
res = nodm_xserver_stop(&srv);
if (res != E_SUCCESS)
{
fprintf(stderr, "nodm_xserver_stop return code: %d\n", res);
return res;
}
test_ok();
}