mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
pids: re-enabled tests on Alpine Linux (#4405)
* [WIP] pids: re-enabled tests on Alpine Linux * trying to compile a simple-faked sleep command * make FreeBSD happy * remove the block testing for Alpine Linux * simpler version of sleeper.c * simpler version of sleeper.c, part II * Update tests/integration/targets/pids/tasks/main.yml Co-authored-by: Felix Fontein <felix@fontein.de> * Update tests/integration/targets/pids/tasks/main.yml Co-authored-by: Felix Fontein <felix@fontein.de> * added license to sleeper.c file Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
24ca69aa05
commit
21ee4c84b7
3 changed files with 96 additions and 91 deletions
12
tests/integration/targets/pids/files/sleeper.c
Normal file
12
tests/integration/targets/pids/files/sleeper.c
Normal file
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* (c) 2022, Alexei Znamensky <russoz@gmail.com>
|
||||
* GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
int delay = atoi(argv[1]);
|
||||
sleep(delay);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue