mbsnrtowcs: Work around Solaris 11.4 bug.
[gnulib.git] / modules / posix_spawn-tests
blob55c4efd7902c7ea6bca322289e65349a6023542e
1 Files:
2 tests/test-posix_spawn3.c
3 tests/signature.h
5 Depends-on:
6 posix_spawn_file_actions_init
7 posix_spawn_file_actions_addopen
8 posix_spawn_file_actions_destroy
9 stdbool
10 unistd
11 sys_wait
12 environ
14 configure.ac:
15 AC_EGREP_CPP([notposix], [[
16 #if defined _MSC_VER || defined __MINGW32__
17   notposix
18 #endif
19   ]],
20   [posix_spawn_ported=no],
21   [posix_spawn_ported=yes])
22 AM_CONDITIONAL([POSIX_SPAWN_PORTED], [test $posix_spawn_ported = yes])
24 Makefile.am:
25 if POSIX_SPAWN_PORTED
26 TESTS += test-posix_spawn3
27 check_PROGRAMS += test-posix_spawn3
28 endif