aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/filesys/create.inc
blob: 4baf7718bdbd0d1a3b162b9a93ef936d0dedca5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* -*- c -*- */

#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"

static char buf[TEST_SIZE];

void
test_main (void) 
{
  const char *file_name = "blargle";
  CHECK (create (file_name, TEST_SIZE), "create \"%s\"", file_name);
  check_file (file_name, buf, TEST_SIZE);
}