allocate_module_test.c revision bdd62c531bbdea115a3a7e71bba91c19dd319cc4
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 <cmockery.h>
20
21extern void leak_memory();
22extern void buffer_overflow();
23extern void buffer_underflow();
24
25// Test case that fails as leak_memory() leaks a dynamically allocated block.
26void leak_memory_test(void **state) {
27    leak_memory();
28}
29
30// Test case that fails as buffer_overflow() corrupts an allocated block.
31void buffer_overflow_test(void **state) {
32    buffer_overflow();
33}
34
35// Test case that fails as buffer_underflow() corrupts an allocated block.
36void buffer_underflow_test(void **state) {
37    buffer_underflow();
38}
39
40int main(int argc, char* argv[]) {
41    const UnitTest tests[] = {
42        unit_test(leak_memory_test),
43        unit_test(buffer_overflow_test),
44        unit_test(buffer_underflow_test),
45    };
46    return run_tests(tests);
47}
48