Test framework output improvement.
[openssl.git] / test / testutil / basic_output.c
1 /*
2  * Copyright 2017 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 "../testutil.h"
11 #include "output.h"
12
13 #include <openssl/crypto.h>
14 #include <openssl/bio.h>
15
16 BIO *bio_out = NULL;
17 BIO *bio_err = NULL;
18
19 void test_open_streams(void)
20 {
21     bio_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
22     bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
23
24     OPENSSL_assert(bio_out != NULL);
25     OPENSSL_assert(bio_err != NULL);
26 }
27
28 void test_close_streams(void)
29 {
30     BIO_free(bio_out);
31     BIO_free(bio_err);
32 }
33
34 int test_vprintf_stdout(const char *fmt, va_list ap)
35 {
36     return BIO_vprintf(bio_out, fmt, ap);
37 }
38
39 int test_vprintf_stderr(const char *fmt, va_list ap)
40 {
41     return BIO_vprintf(bio_err, fmt, ap);
42 }
43
44 int test_flush_stdout(void)
45 {
46     return BIO_flush(bio_out);
47 }
48
49 int test_flush_stderr(void)
50 {
51     return BIO_flush(bio_err);
52 }