This repository has been archived on 2021-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
OS/pintos-env/pintos/tests/filesys/extended/grow-seq.inc

21 lines
286 B
PHP
Raw Normal View History

/* -*- c -*- */
#include "tests/filesys/seq-test.h"
#include "tests/main.h"
static char buf[TEST_SIZE];
static size_t
return_block_size (void)
{
return 1234;
}
void
test_main (void)
{
seq_test ("testme",
buf, sizeof buf, 0,
return_block_size, NULL);
}