Fix build error on mingw with the modules sys_select and unistd.
[gnulib.git] / modules / posix_spawnp-tests
1 Files:
2 tests/test-posix_spawn1.c
3 tests/test-posix_spawn1.in.sh
4 tests/test-posix_spawn2.c
5 tests/test-posix_spawn2.in.sh
6
7 Depends-on:
8 posix_spawn_file_actions_init
9 posix_spawn_file_actions_adddup2
10 posix_spawn_file_actions_addclose
11 posix_spawn_file_actions_addopen
12 posix_spawn_file_actions_destroy
13 posix_spawnattr_init
14 posix_spawnattr_setsigmask
15 posix_spawnattr_setflags
16 posix_spawnattr_destroy
17 sigprocmask
18 stdbool
19 unistd
20 sys_wait
21 close
22
23 configure.ac:
24 AC_EGREP_CPP([notposix], [[
25 #if defined _MSC_VER || defined __MINGW32__
26   notposix
27 #endif
28   ]],
29   [posix_spawn_ported=no],
30   [posix_spawn_ported=yes])
31 AM_CONDITIONAL([POSIX_SPAWN_PORTED], [test $posix_spawn_ported = yes])
32
33 Makefile.am:
34 if POSIX_SPAWN_PORTED
35 TESTS += test-posix_spawn1 test-posix_spawn2
36 check_PROGRAMS += test-posix_spawn1 test-posix_spawn2
37
38 BUILT_SOURCES += test-posix_spawn1.sh
39 test-posix_spawn1.sh: test-posix_spawn1.in.sh
40         cp $(srcdir)/test-posix_spawn1.in.sh $@-t
41         mv $@-t $@
42 MOSTLYCLEANFILES += test-posix_spawn1.sh test-posix_spawn1.sh-t
43
44 BUILT_SOURCES += test-posix_spawn2.sh
45 test-posix_spawn2.sh: test-posix_spawn2.in.sh
46         cp $(srcdir)/test-posix_spawn2.in.sh $@-t
47         mv $@-t $@
48 MOSTLYCLEANFILES += test-posix_spawn2.sh test-posix_spawn2.sh-t
49 endif