-
Notifications
You must be signed in to change notification settings - Fork 69
/
exec_wrapper.c
66 lines (55 loc) · 1.85 KB
/
exec_wrapper.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
60
61
62
63
64
65
66
/*
* fMBT, free Model Based Testing tool
* Copyright (c) 2013, Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU Lesser General Public License,
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope 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 program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
/* This program helps launching fMBT Python applications on Windows. */
#include <glib.h>
#include <stdio.h>
#include <string.h>
int main(int argc,char** argv)
{
gint exit_status;
int i;
char** margv;
GSpawnFlags spawn_flags;
#if G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION) < G_ENCODE_VERSION (2, 36)
g_type_init ();
#endif
margv=(char**)g_new0(char**,argc+2);
if (!g_getenv("fmbt_debug_windows") && margv[0] &&
(g_str_has_suffix(margv[0],"fmbt-editor.exe") ||
g_str_has_suffix(margv[0],"fmbt-editor")) ) {
margv[0]=g_find_program_in_path("pythonw");
}
if (margv[0]==NULL) {
margv[0]=g_find_program_in_path("python");
}
margv[1]=g_find_program_in_path(argv[0]);
if (margv[1] && g_str_has_suffix(margv[1],".exe")) {
margv[1]=g_strndup(margv[1],strlen(margv[1])-4);
}
for(i=1;i<argc;i++) {
margv[i+1]=argv[i];
}
spawn_flags=G_SPAWN_CHILD_INHERITS_STDIN|G_SPAWN_LEAVE_DESCRIPTORS_OPEN;
g_spawn_sync(NULL,margv,NULL,
spawn_flags,
NULL,NULL,
NULL,NULL,
&exit_status,NULL);
return exit_status;
}