Fix common test usage, and merge in additional document changes.
[awesomized/libmemcached] / tests / start.cc
1 /* LibMemcached
2 * Copyright (C) 2006-2009 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
8 * Summary:
9 *
10 */
11
12 #include <config.h>
13
14 #include <stdio.h>
15 #include <string.h>
16 #include <libtest/server.h>
17
18 int main(void)
19 {
20 server_startup_st construct;
21
22 memset(&construct, 0, sizeof(server_startup_st));
23
24 construct.count= 4;
25
26 server_startup(&construct);
27
28 return EXIT_SUCCESS;
29 }