mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-05-13 07:03:33 +00:00
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.
36 lines
772 B
Plaintext
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
|