malloc-h: New module.
[gnulib.git] / modules / posix_spawn_file_actions_addfchdir-tests
blob45f42305721bea32de00fb3ef97537fa4d13fff3
1 Files:
2 tests/test-posix_spawn_file_actions_addfchdir.c
3 tests/test-posix_spawn-fchdir.c
4 tests/signature.h
5 tests/macros.h
7 Depends-on:
8 posix_spawn_file_actions_init
9 posix_spawnp-tests
10 findprog
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])
22 Makefile.am:
23 TESTS += test-posix_spawn_file_actions_addfchdir
24 check_PROGRAMS += test-posix_spawn_file_actions_addfchdir
26 if POSIX_SPAWN_PORTED
27 TESTS += test-posix_spawn-fchdir
28 check_PROGRAMS += test-posix_spawn-fchdir
29 endif