blob: ca899bcaf4e7b3bf019c8d93c7125a189bb0f460 [file] [log] [blame]
Jaeden Ameroab83fdf2019-06-20 17:38:22 +01001/*
2 * Simple program to test that CMake builds with Mbed TLS as a subdirectory
3 * work correctly.
4 *
5 * Copyright (C) 2006-2019, ARM Limited, All Rights Reserved
6 * SPDX-License-Identifier: Apache-2.0
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License"); you may
9 * not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 *
20 * This file is part of mbed TLS (https://tls.mbed.org)
21 */
22
23#if !defined(MBEDTLS_CONFIG_FILE)
24#include "mbedtls/config.h"
25#else
26#include MBEDTLS_CONFIG_FILE
27#endif
28
29#if defined(MBEDTLS_PLATFORM_C)
30#include "mbedtls/platform.h"
31#else
32#include <stdio.h>
33#include <stdlib.h>
34#define mbedtls_fprintf fprintf
35#define mbedtls_printf printf
36#define mbedtls_exit exit
37#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
38#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
39#endif /* MBEDTLS_PLATFORM_C */
40
41#include "mbedtls/version.h"
42
43/* The main reason to build this is for testing the CMake build, so the program
44 * doesn't need to do very much. It calls a single library function to ensure
45 * linkage works, but that is all. */
46int main()
47{
48 /* This version string is 18 bytes long, as advised by version.h. */
49 char version[18];
50
51 mbedtls_version_get_string_full( version );
52
53 mbedtls_printf( "Built against %s\n", version );
54
55 return( 0 );
56}