File: tests.h

package info (click to toggle)
axe-demultiplexer 0.3.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 848 kB
  • sloc: ansic: 4,480; python: 352; makefile: 171; sh: 47
file content (47 lines) | stat: -rw-r--r-- 951 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * ============================================================================
 *
 *       Filename:  tests.h
 *
 *    Description:  All tests for axe, and all common includes.
 *
 *        Version:  1.0
 *        Created:  20/06/14 17:16:52
 *       Revision:  none
 *        License:  GPLv3+
 *       Compiler:  gcc, clang
 *
 *         Author:  Kevin Murray, spam@kdmurray.id.au
 *
 * ============================================================================
 */

#ifndef AXE_TESTS_H
#define AXE_TESTS_H

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <errno.h>
#include <stdint.h>
#include <time.h>
#ifndef _WIN32
#include <unistd.h>
#endif

#include <sys/stat.h>
#include <sys/types.h>

/* TinyTest */
#include "tinytest/tinytest.h"
#include "tinytest/tinytest_macros.h"

#include <qes.h>

#include "axe.h"


/* Core tests */
extern struct testcase_t core_tests[];
#endif /* ifndef AXE_TESTS_H */