annotate modules/posix_spawn-tests @ 15814:625d9f3201d8

acl: Fix specification. * lib/file-has-acl.c (file_has_acl): Fix specification.
author Bruno Haible <bruno@clisp.org>
date Mon, 03 Oct 2011 15:48:57 +0200
parents fb3e3c38ef7a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10687
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Files:
12492
fb3e3c38ef7a Reorder file list.
Bruno Haible <bruno@clisp.org>
parents: 12489
diff changeset
2 tests/test-posix_spawn3.c
12489
33ab12a7cea2 tests: add signature checks
Eric Blake <ebb9@byu.net>
parents: 11805
diff changeset
3 tests/signature.h
10687
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 Depends-on:
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 posix_spawn_file_actions_init
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 posix_spawn_file_actions_addopen
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 posix_spawn_file_actions_destroy
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 stdbool
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 unistd
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 sys_wait
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 configure.ac:
11269
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
14 AC_EGREP_CPP([notposix], [[
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
15 #if defined _MSC_VER || defined __MINGW32__
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
16 notposix
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
17 #endif
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
18 ]],
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
19 [posix_spawn_ported=no],
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
20 [posix_spawn_ported=yes])
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
21 AM_CONDITIONAL([POSIX_SPAWN_PORTED], [test $posix_spawn_ported = yes])
10687
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 Makefile.am:
11269
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
24 if POSIX_SPAWN_PORTED
10687
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 TESTS += test-posix_spawn3
8ddeb7137f43 Tests for posix_spawn function.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 check_PROGRAMS += test-posix_spawn3
11269
8fea875fffee Avoid errors from posix_spawn on platforms where it is not yet ported to.
Bruno Haible <bruno@clisp.org>
parents: 10687
diff changeset
27 endif