Hash :
8403a258
Author :
Date :
2023-01-11T19:51:43
posix_spawn_file_actions_addfchdir tests: Fix test failure on Android. * tests/test-posix_spawn-fchdir.c: Include xvasprintf.h. (test): On Android, use "/proc" instead of "/". (main): Determine the relative location of the 'pwd' program accordingly. * modules/posix_spawn_file_actions_addfchdir-tests (Depends-on): Add xvasprintf.
Files:
tests/test-posix_spawn_file_actions_addfchdir.c
tests/test-posix_spawn-fchdir.c
tests/signature.h
tests/qemu.h
tests/macros.h
Depends-on:
posix_spawn_file_actions_init
posix_spawn_file_actions_destroy
posix_spawnp-tests
stdbool
findprog
xvasprintf
configure.ac:
AC_EGREP_CPP([notposix], [[
#if defined _MSC_VER || defined __MINGW32__
notposix
#endif
]],
[posix_spawn_ported=no],
[posix_spawn_ported=yes])
gl_CONDITIONAL([POSIX_SPAWN_PORTED], [test $posix_spawn_ported = yes])
Makefile.am:
TESTS += test-posix_spawn_file_actions_addfchdir
check_PROGRAMS += test-posix_spawn_file_actions_addfchdir
if POSIX_SPAWN_PORTED
TESTS += test-posix_spawn-fchdir
check_PROGRAMS += test-posix_spawn-fchdir
test_posix_spawn_fchdir_LDADD = $(LDADD) @LIBINTL@
endif