Lines Matching refs:posix_spawn
62 "Tests a simple posix_spawn executing /bin/ls");
68 RZ(posix_spawn(NULL, "/bin/ls", NULL, NULL, args, NULL));
93 err = posix_spawn(NULL, buf, NULL, NULL, args, NULL);
102 "posix_spawn an invalid binary");
113 "posix_spawn a nonexistent binary");
124 "posix_spawn a script with non existing interpreter");
135 "posix_spawn a child and get its return code");
152 RZ(posix_spawn(&pid, buf, NULL, NULL, args0, NULL));
243 * will cause a "proper" return value from posix_spawn(2)
252 error = posix_spawn(&pid, "/bin/pwd", &fa, attr_p, args, NULL);
500 * will cause a "proper" return value from posix_spawn(2)
509 error = posix_spawn(&pid, "/bin/pwd", &fa, &attr, args, NULL);
520 "Checks that posix_spawn does not drop pending signals");
541 RZ(posix_spawn(&pid, argv[0], &fa, NULL, argv, NULL));