bond/include/test/driver.h

15 lines
218 B
C
Raw Normal View History

2018-01-26 08:43:22 +00:00
#ifndef _TEST_DRIVER_H_
#define _TEST_DRIVER_H_
2018-01-26 08:43:22 +00:00
#include "type.h"
2017-02-01 03:26:08 +00:00
void KABI test_begin(char *name);
void KABI test_end(void);
2017-02-01 03:26:08 +00:00
void *KABI talloc(uint32_t size);
2017-02-01 03:26:08 +00:00
void KABI run_case(char *name, bool result);
#endif