blob: e86f6e60cda72734a93158c6b43cdc287572eb0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
* This file is part of libnvme.
* Copyright (c) 2022 Code Construct
*
* Common test utilities for libnvme tests. These have quite strict error
* handling, so the general pattern is to abort/exit on error.
*/
#ifndef _TEST_UTILS_H
#define _TEST_UTILS_H
#include <stdio.h>
FILE *test_setup_log(void);
void test_print_log_buf(FILE *logfd);
void test_close_log(FILE *fd);
#endif /* _TEST_UTILS_H */
|