mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
tests/gsubprocess: Locate test child binary for installed tests too
Just use the new g_test_build_filename() rather than assuming it's in cwd.
This commit is contained in:
parent
f7e2190e74
commit
ebd098155b
@ -17,25 +17,21 @@ get_test_subprocess_args (const char *mode,
|
||||
...)
|
||||
{
|
||||
GPtrArray *ret;
|
||||
char *cwd;
|
||||
char *cwd_path;
|
||||
char *path;
|
||||
const char *binname;
|
||||
va_list args;
|
||||
gpointer arg;
|
||||
|
||||
ret = g_ptr_array_new_with_free_func (g_free);
|
||||
|
||||
cwd = g_get_current_dir ();
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
binname = "gsubprocess-testprog.exe";
|
||||
#else
|
||||
binname = "gsubprocess-testprog";
|
||||
#endif
|
||||
|
||||
cwd_path = g_build_filename (cwd, binname, NULL);
|
||||
g_free (cwd);
|
||||
g_ptr_array_add (ret, cwd_path);
|
||||
path = g_test_build_filename (G_TEST_BUILT, binname, NULL);
|
||||
g_ptr_array_add (ret, path);
|
||||
g_ptr_array_add (ret, g_strdup (mode));
|
||||
|
||||
va_start (args, mode);
|
||||
|
Loading…
Reference in New Issue
Block a user