test_MAIN.c revision 48e27400d23e2586530cf943524e50c74d79a915
383N/A/**
383N/A * The contents of this file are subject to the terms of the Common Development and
383N/A * Distribution License (the License). You may not use this file except in compliance with the
383N/A * License.
383N/A *
383N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
383N/A * specific language governing permission and limitations under the License.
383N/A *
6982N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
6982N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
383N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
383N/A * information: "Portions copyright [year] [name of copyright owner]".
383N/A *
383N/A * Copyright 2015 ForgeRock AS.
6982N/A */
6982N/A
6982N/A/** THIS FILE AUTOMATICALLY GENERATED FROM mm.sh. DO NOT EDIT !! */
6982N/A
383N/A#include <stdio.h>
383N/A#include <setjmp.h>
383N/A#include <cmocka.h>
383N/A
383N/A#include "am.h"
3215N/A
6061N/A#include "test_log.h"
383N/A
383N/A/**
383N/A * The main framework for calling the cmocka tests. The exit status reflects the success or failure of
383N/A * the tests.
383N/A */
383N/Aint main(void) {
383N/A const struct CMUnitTest tests[] = {
383N/A cmocka_unit_test(test_logging),
6069N/A cmocka_unit_test(test_am_strncat),
383N/A };
6069N/A return cmocka_run_group_tests(tests, NULL, NULL);
6069N/A}
6069N/A