mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
82adfd7e3a
For manual test coverage that would reproduce the bug fixed in !1902, copy /bin/true (or any other harmless executable) to /usr/bin/spawn-test-helper. Signed-off-by: Simon McVittie <smcv@collabora.com>
8 lines
119 B
C
8 lines
119 B
C
#include <stdio.h>
|
|
|
|
int main (void)
|
|
{
|
|
fprintf (stderr, "this is spawn-test-helper from glib/tests\n");
|
|
return 0;
|
|
}
|