forked from libsdl-org/SDL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestquit.c
More file actions
102 lines (87 loc) · 2.38 KB
/
testquit.c
File metadata and controls
102 lines (87 loc) · 2.38 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
Copyright (C) 2013 Apoorv Upreti <[email protected]>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely.
*/
/* Quits, hangs or crashes based on the command line options passed. */
#include <SDL.h>
#include <SDL_test.h>
static SDLTest_CommonState *state;
static int exit_code;
static SDL_bool hang;
static SDL_bool crash;
int
main(int argc, char** argv)
{
int i, done;
SDL_Event event;
state = SDLTest_CommonCreateState(argv, SDL_INIT_VIDEO);
if(!state)
return 1;
state->window_flags |= SDL_WINDOW_RESIZABLE;
exit_code = 0;
hang = SDL_FALSE;
crash = SDL_FALSE;
for(i = 1; i < argc; )
{
int consumed;
consumed = SDLTest_CommonArg(state, i);
if(consumed == 0)
{
consumed = -1;
if(SDL_strcasecmp(argv[i], "--exit-code") == 0)
{
if(argv[i + 1])
{
exit_code = SDL_atoi(argv[i + 1]);
consumed = 2;
}
}
else if(SDL_strcasecmp(argv[i], "--hang") == 0)
{
hang = SDL_TRUE;
consumed = 1;
}
else if(SDL_strcasecmp(argv[i], "--crash") == 0)
{
crash = SDL_TRUE;
consumed = 1;
}
}
if(consumed < 0)
{
static const char *options[] = { "[--exit-code N]", "[--crash]", "[--hang]", NULL };
SDLTest_CommonLogUsage(state, argv[0], options);
SDLTest_CommonQuit(state);
return 1;
}
i += consumed;
}
if(!SDLTest_CommonInit(state))
{
SDLTest_CommonQuit(state);
return 1;
}
/* infinite loop to hang the process */
while(hang)
SDL_Delay(10);
/* dereference NULL pointer to crash process */
if(crash)
{
int* p = NULL;
*p = 5;
}
/* event loop */
done = 0;
while(!done)
{
while(SDL_PollEvent(&event))
SDLTest_CommonEvent(state, &event, &done);
SDL_Delay(10);
}
return exit_code;
}