]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/generate_buildtest.pl
Create provider errors and use them
[thirdparty/openssl.git] / test / generate_buildtest.pl
CommitLineData
bffb1490 1#! /usr/bin/env perl
83cf7abf 2# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
bffb1490 3#
909f1a2e 4# Licensed under the Apache License 2.0 (the "License"). You may not use
bffb1490
RL
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
9use strict;
10use warnings;
11
12# First argument is name;
13my $name = shift @ARGV;
5cdad22f 14my $name_uc = uc $name;
bffb1490
RL
15# All other arguments are ignored for now
16
17print <<"_____";
18/*
19 * Generated with test/generate_buildtest.pl, to check that such a simple
20 * program builds.
21 */
5cdad22f
RL
22#include <openssl/opensslconf.h>
23#ifndef OPENSSL_NO_STDIO
24# include <stdio.h>
25#endif
26#ifndef OPENSSL_NO_${name_uc}
27# include <openssl/$name.h>
28#endif
bffb1490 29
3cb7c5cf 30int main(void)
bffb1490
RL
31{
32 return 0;
33}
34_____