cleanup composer/compositing/composition -> compositor
[AROS.git] / test / clib / execl2_slave.c
blob39733e67148fcca9ecb2be96de76a7b58648012d
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
5 #include "test.h"
7 int main(int argc, const char *argv[])
9 int fd;
10 FILE *f;
12 sscanf(argv[1], "%d", &fd);
13 f = fdopen(fd, "r");
14 TEST(f != NULL);
16 char line[10];
17 fseek(f, 0, SEEK_SET);
18 TEST(fgets(line, 10, f) != NULL);
20 TEST(strcmp(line, "OK\n") == 0);
22 return 0;
25 void cleanup(void)
27 /* NOP */
28 return;