same-inode: make SAME_INODE tri-state, to port to mingw
[gnulib.git] / modules / posix_spawn-tests
1 Files:
2 tests/test-posix_spawn3.c
3
4 Depends-on:
5 posix_spawn_file_actions_init
6 posix_spawn_file_actions_addopen
7 posix_spawn_file_actions_destroy
8 stdbool
9 unistd
10 sys_wait
11
12 configure.ac:
13 AC_EGREP_CPP([notposix], [[
14 #if defined _MSC_VER || defined __MINGW32__
15   notposix
16 #endif
17   ]],
18   [posix_spawn_ported=no],
19   [posix_spawn_ported=yes])
20 AM_CONDITIONAL([POSIX_SPAWN_PORTED], [test $posix_spawn_ported = yes])
21
22 Makefile.am:
23 if POSIX_SPAWN_PORTED
24 TESTS += test-posix_spawn3
25 check_PROGRAMS += test-posix_spawn3
26 endif