]> git.ipfire.org Git - thirdparty/dhcp.git/blob - common/tests/hash_unittest.c
fcc1feb9fe8cde704c1335d5030df550458e0e73
[thirdparty/dhcp.git] / common / tests / hash_unittest.c
1 /*
2 * Copyright (c) 2012 by Internet Systems Consortium, Inc. ("ISC")
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
14 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 *
16 * Internet Systems Consortium, Inc.
17 * 950 Charter Street
18 * Redwood City, CA 94063
19 * <info@isc.org>
20 * https://www.isc.org/
21 *
22 */
23
24 #include "config.h"
25 #include <atf-c.h>
26 #include <omapip/omapip_p.h>
27
28
29 ATF_TC(hash_basic);
30
31 ATF_TC_HEAD(hash_basic, tc) {
32 atf_tc_set_md_var(tc, "descr", "Basic hash functions tests");
33 }
34
35 ATF_TC_BODY(hash_basic, tc) {
36
37 }
38
39 ATF_TP_ADD_TCS(tp) {
40 ATF_TP_ADD_TC(tp, hash_basic);
41
42 return (atf_no_error());
43 }