]> git.ipfire.org Git - thirdparty/openssl.git/blob - test/test_main_custom.c
Make asn1 fuzzer more reproducible
[thirdparty/openssl.git] / test / test_main_custom.c
1 /*
2 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
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 */
9
10 #include "test_main_custom.h"
11 #include "testutil.h"
12
13 #include <stdio.h>
14 #include <stdlib.h>
15
16 int main(int argc, char *argv[])
17 {
18 int ret;
19 setup_test();
20
21 ret = test_main(argc, argv);
22
23 return finish_test(ret);
24 }