aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/filesys/extended/grow-seq.inc
blob: 1b7710c9c1d4d8a91867b17e8e5f4365fc4cd0d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*- 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);
}