Update and improve help for --without-included-regex.
[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
22 configure.ac:
23 AC_EGREP_CPP([notposix], [[
24 #if defined _MSC_VER || defined __MINGW32__
25   notposix
26 #endif
27   ]],
28   [posix_spawn_ported=no],
29   [posix_spawn_ported=yes])
30 AM_CONDITIONAL([POSIX_SPAWN_PORTED], [test $posix_spawn_ported = yes])
31
32 Makefile.am:
33 if POSIX_SPAWN_PORTED
34 TESTS += test-posix_spawn1 test-posix_spawn2
35 check_PROGRAMS += test-posix_spawn1 test-posix_spawn2
36
37 BUILT_SOURCES += test-posix_spawn1.sh
38 test-posix_spawn1.sh: test-posix_spawn1.in.sh
39         cp $(srcdir)/test-posix_spawn1.in.sh $@-t
40         mv $@-t $@
41 MOSTLYCLEANFILES += test-posix_spawn1.sh test-posix_spawn1.sh-t
42
43 BUILT_SOURCES += test-posix_spawn2.sh
44 test-posix_spawn2.sh: test-posix_spawn2.in.sh
45         cp $(srcdir)/test-posix_spawn2.in.sh $@-t
46         mv $@-t $@
47 MOSTLYCLEANFILES += test-posix_spawn2.sh test-posix_spawn2.sh-t
48 endif