OpenVPN
allocate_module_test.c
Go to the documentation of this file.
1 /*
2  * Copyright 2008 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include <stdarg.h>
17 #include <stddef.h>
18 #include <setjmp.h>
19 #include <cmocka.h>
20 
21 extern void leak_memory();
22 extern void buffer_overflow();
23 extern void buffer_underflow();
24 
25 /* Test case that fails as leak_memory() leaks a dynamically allocated block. */
26 static void leak_memory_test(void **state) {
27  (void) state; /* unused */
28 
29  leak_memory();
30 }
31 
32 /* Test case that fails as buffer_overflow() corrupts an allocated block. */
33 static void buffer_overflow_test(void **state) {
34  (void) state; /* unused */
35 
37 }
38 
39 /* Test case that fails as buffer_underflow() corrupts an allocated block. */
40 static void buffer_underflow_test(void **state) {
41  (void) state; /* unused */
42 
44 }
45 
46 int main(void) {
47  const struct CMUnitTest tests[] = {
51  };
52  return cmocka_run_group_tests(tests, NULL, NULL);
53 }
#define cmocka_unit_test(f)
Initializes a CMUnitTest structure.
Definition: cmocka.h:1653
static void buffer_underflow_test(void **state)
void leak_memory()
void buffer_overflow()
static void leak_memory_test(void **state)
void buffer_underflow()
static void buffer_overflow_test(void **state)
int main(void)
#define cmocka_run_group_tests(group_tests, group_setup, group_teardown)
Definition: cmocka.h:1749