summaryrefslogtreecommitdiffstats
path: root/pintos-progos/tests/filesys/base/full.inc
diff options
context:
space:
mode:
Diffstat (limited to 'pintos-progos/tests/filesys/base/full.inc')
-rw-r--r--pintos-progos/tests/filesys/base/full.inc20
1 files changed, 20 insertions, 0 deletions
diff --git a/pintos-progos/tests/filesys/base/full.inc b/pintos-progos/tests/filesys/base/full.inc
new file mode 100644
index 0000000..38a0396
--- /dev/null
+++ b/pintos-progos/tests/filesys/base/full.inc
@@ -0,0 +1,20 @@
1/* -*- c -*- */
2
3#include "tests/filesys/seq-test.h"
4#include "tests/main.h"
5
6static char buf[TEST_SIZE];
7
8static size_t
9return_test_size (void)
10{
11 return TEST_SIZE;
12}
13
14void
15test_main (void)
16{
17 seq_test ("quux",
18 buf, sizeof buf, sizeof buf,
19 return_test_size, NULL);
20}