xref: /haiku/src/tests/system/libroot/posix/LibRootPosix.cpp (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2017, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  * Andrew Aldridge, i80and@foxquill.com
7  */
8 
9 
10 #include <TestSuite.h>
11 #include <TestSuiteAddon.h>
12 
13 #include "CryptTest.h"
14 
15 
16 BTestSuite*
17 getTestSuite()
18 {
19 	BTestSuite* suite = new BTestSuite("LibRootPosix");
20 	CryptTest::AddTests(*suite);
21 	return suite;
22 }
23