aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/filesys/extended/syn-rw.c
blob: 657dfb56c0acd8aef6cf7eedff4ee65a2d81f329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* Grows a file in chunks while subprocesses read the growing
   file. */

#include <random.h>
#include <syscall.h>
#include "tests/filesys/extended/syn-rw.h"
#include "tests/lib.h"
#include "tests/main.h"

char buf[BUF_SIZE];

#define CHILD_CNT 4

void
test_main (void) 
{
  pid_t children[CHILD_CNT];
  size_t ofs;
  int fd;

  CHECK (create (file_name, 0), "create \"%s\"", file_name);
  CHECK ((fd = open (file_name)) > 1, "open \"%s\"", file_name);

  exec_children ("child-syn-rw", children, CHILD_CNT);

  random_bytes (buf, sizeof buf);
  quiet = true;
  for (ofs = 0; ofs < BUF_SIZE; ofs += CHUNK_SIZE)
    CHECK (write (fd, buf + ofs, CHUNK_SIZE) > 0,
           "write %d bytes at offset %zu in \"%s\"",
           (int) CHUNK_SIZE, ofs, file_name);
  quiet = false;

  wait_children (children, CHILD_CNT);
}