vfs: check userland buffers before reading them.
[haiku.git] / src / tests / system / kernel / fs / KernelFSTestAddon.cpp
blob9081d5e18ebe464963974445bf111ebc65617c63
1 /*
2 * Copyright 2017, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <TestSuite.h>
8 #include <TestSuiteAddon.h>
10 #include "KPathTest.h"
13 BTestSuite*
14 getTestSuite()
16 BTestSuite* suite = new BTestSuite("KernelFS");
18 KPathTest::AddTests(*suite);
20 return suite;