repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vfs: check userland buffers before reading them.
[haiku.git]
/
src
/
tests
/
kits
/
net
/
posixnet
/
PosixNetTestAddon.cpp
blob
8817c8af6c661e126541fc50e1fa7aae5d81d079
1
/*
2
* Copyright 2014 Haiku, Inc.
3
* Distributed under the terms of the MIT License.
4
*/
5
6
7
#include <TestSuite.h>
8
#include <TestSuiteAddon.h>
9
10
#include
"GetAddrInfo.h"
11
12
13
BTestSuite
*
14
getTestSuite
()
15
{
16
BTestSuite
*
suite
=
new
BTestSuite
(
"PosixNet"
);
17
18
GetAddrInfoTest
::
AddTests
(*
suite
);
19
20
return
suite
;
21
}
22