21 lines
301 B
PHP
21 lines
301 B
PHP
|
/* -*- c -*- */
|
||
|
|
||
|
#include "tests/filesys/seq-test.h"
|
||
|
#include "tests/main.h"
|
||
|
|
||
|
static char buf[TEST_SIZE];
|
||
|
|
||
|
static size_t
|
||
|
return_block_size (void)
|
||
|
{
|
||
|
return BLOCK_SIZE;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
test_main (void)
|
||
|
{
|
||
|
seq_test ("noodle",
|
||
|
buf, sizeof buf, sizeof buf,
|
||
|
return_block_size, NULL);
|
||
|
}
|