diff options
Diffstat (limited to 'include/test/optee.h')
-rw-r--r-- | include/test/optee.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/test/optee.h b/include/test/optee.h new file mode 100644 index 00000000000..a8c6e6395f5 --- /dev/null +++ b/include/test/optee.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2019, Theobroma Systems Design und Consulting GmbH + */ + +#ifndef __TEST_OPTEE_H__ +#define __TEST_OPTEE_H__ + +#include <test/test.h> + +/* Declare a new environment test */ +#define OPTEE_TEST(_name, _flags) UNIT_TEST(_name, _flags, optee_test) + +#endif /* __TEST_OPTEE_H__ */ |