1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-05-13 15:13:36 +00:00
Files
gnulib/modules/posix_spawn_file_actions_addfchdir-tests
Bruno Haible 0e0dc90965 tests: Use memeq, part 2.
Done through
  sed -e 's/memcmp \([(][^()]*[)]\) != 0/!memeq \1/g' \
      -e 's/memcmp \([(][^()]*[(][^()]*[)][^()]*[)]\) != 0/!memeq \1/g'

* tests/**/*.[hc]: Use !memeq instead of memcmp ... != 0.
* modules/*-tests (Dependencies): Add memeq.
2026-03-01 12:37:26 +01:00

36 lines
772 B
Plaintext

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
bool
findprog
xvasprintf
memeq
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