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 */
|