xref: /haiku/src/tests/system/kernel/unit/lock/LockTestSuite.cpp (revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "LockTestSuite.h"
8 
9 #include "RWLockTests.h"
10 
11 
12 TestSuite*
13 create_lock_test_suite()
14 {
15 	TestSuite* suite = new(std::nothrow) TestSuite("lock");
16 
17 	ADD_TEST(suite, create_rw_lock_test_suite());
18 
19 	return suite;
20 }
21