mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-19 23:28:54 +02:00
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
125 B
C
8 lines
125 B
C
#include <stdio.h>
|
|
|
|
int main (void)
|
|
{
|
|
fprintf (stderr, "this is spawn-test-helper from path-test-subdir\n");
|
|
return 5;
|
|
}
|