mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-14 17:13:50 +01:00
Merge pull request #21702 from N11cc00/fix-tests-headers
tests: replace header guards with #pragma once
This commit is contained in:
commit
8c12a06824
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -17,8 +19,6 @@
|
||||
*
|
||||
* @}
|
||||
*/
|
||||
#ifndef BENCH_TIMERS_CONFIG_H
|
||||
#define BENCH_TIMERS_CONFIG_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -250,5 +250,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* BENCH_TIMERS_CONFIG_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -16,9 +18,6 @@
|
||||
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||
*/
|
||||
|
||||
#ifndef PRINT_RESULTS_H
|
||||
#define PRINT_RESULTS_H
|
||||
|
||||
#include "matstat.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -59,5 +58,3 @@ void print_results(const result_presentation_t *pres, const matstat_state_t *ref
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* PRINT_RESULTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup sys_spin_random Spin_random - random CPU delays
|
||||
* @ingroup sys
|
||||
@ -18,9 +20,6 @@
|
||||
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||
*/
|
||||
|
||||
#ifndef SPIN_RANDOM_H
|
||||
#define SPIN_RANDOM_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "periph/timer.h"
|
||||
|
||||
@ -66,5 +65,4 @@ uint32_t spin_random_calibrate(tim_t timer_dev, uint32_t spin_max_target);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* SPIN_RANDOM_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -18,9 +20,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef MODULE_H
|
||||
#define MODULE_H
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
class module_class
|
||||
@ -43,4 +42,3 @@ public:
|
||||
};
|
||||
|
||||
/** @} */
|
||||
#endif /* MODULE_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup boards_external_native
|
||||
* @{
|
||||
@ -16,9 +18,6 @@
|
||||
* @author Gaëtan Harter <gaetan.harter@fu-berlin.de>
|
||||
*/
|
||||
|
||||
#ifndef EXTERNAL_NATIVE_H
|
||||
#define EXTERNAL_NATIVE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -32,5 +31,4 @@ extern char* external_native_board_description;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* EXTERNAL_NATIVE_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup
|
||||
* @ingroup
|
||||
@ -17,8 +19,6 @@
|
||||
*
|
||||
* @author Gaëtan Harter <gaetan.harter@fu-berlin.de>
|
||||
*/
|
||||
#ifndef EXTERNAL_MODULE_H
|
||||
#define EXTERNAL_MODULE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
@ -47,4 +47,3 @@ void auto_init_external_module(void);
|
||||
#endif
|
||||
|
||||
/** @} */
|
||||
#endif /* EXTERNAL_MODULE_H */
|
||||
|
||||
@ -5,8 +5,8 @@
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
#ifndef APP_H
|
||||
#define APP_H
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -22,5 +22,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* APP_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup
|
||||
* @ingroup
|
||||
@ -20,9 +22,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef EXTERNAL_MODULE_1_H
|
||||
#define EXTERNAL_MODULE_1_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -36,4 +35,3 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/** @} */
|
||||
#endif /* EXTERNAL_MODULE_1_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup
|
||||
* @ingroup
|
||||
@ -20,9 +22,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef EXTERNAL_MODULE_2_H
|
||||
#define EXTERNAL_MODULE_2_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -36,4 +35,3 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/** @} */
|
||||
#endif /* EXTERNAL_MODULE_2_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup
|
||||
* @ingroup
|
||||
@ -21,9 +23,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef EXTERNAL_PKG_1_H
|
||||
#define EXTERNAL_PKG_1_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -37,4 +36,3 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/** @} */
|
||||
#endif /* EXTERNAL_PKG_1_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup
|
||||
* @ingroup
|
||||
@ -21,9 +23,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef EXTERNAL_PKG_2_H
|
||||
#define EXTERNAL_PKG_2_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -37,4 +36,3 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/** @} */
|
||||
#endif /* EXTERNAL_PKG_2_H */
|
||||
|
||||
@ -6,8 +6,7 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#ifndef XFATEST_H
|
||||
#define XFATEST_H
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -26,5 +25,3 @@ typedef struct {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* XFATEST_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -17,8 +19,6 @@
|
||||
*
|
||||
* @}
|
||||
*/
|
||||
#ifndef CPU_TESTS_H
|
||||
#define CPU_TESTS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -29,5 +29,3 @@ void ebi_tests(void);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CPU_TESTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include "at86rf215_params.h"
|
||||
#include "kernel_defines.h"
|
||||
@ -33,5 +33,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include "at86rf2xx_params.h"
|
||||
#include "kernel_defines.h"
|
||||
@ -32,5 +32,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief Util functions for test application for the BQ24298x device
|
||||
@ -14,9 +16,6 @@
|
||||
* @file
|
||||
*/
|
||||
|
||||
#ifndef PRIV_UTIL_H
|
||||
#define PRIV_UTIL_H
|
||||
|
||||
#include <assert.h>
|
||||
#include "bq2429x.h"
|
||||
|
||||
@ -208,5 +207,3 @@ static inline const char *_util_chrg_fault_to_str(bq2429x_chrg_fault_t fault)
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* PRIV_UTIL_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include "cc2420_params.h"
|
||||
#include "kernel_defines.h"
|
||||
@ -32,5 +32,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -29,5 +29,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -41,5 +41,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -41,5 +41,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -41,5 +41,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests_drivers_epd_bw_spi
|
||||
* @{
|
||||
@ -24,9 +26,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef PICTURES_H
|
||||
#define PICTURES_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -269,4 +268,3 @@ const uint8_t riot_logo_32[17][4] = {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* PICTURES_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests_drivers_epd_bw_spi
|
||||
* @{
|
||||
@ -24,9 +26,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef PICTURES_H
|
||||
#define PICTURES_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -269,4 +268,3 @@ const uint8_t riot_logo_32[17][4] = {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* PICTURES_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -32,5 +32,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -41,5 +41,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include "kernel_defines.h"
|
||||
#include "kw2xrf_params.h"
|
||||
@ -36,5 +36,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include "kernel_defines.h"
|
||||
#include "mrf24j40_params.h"
|
||||
@ -32,5 +32,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Kevin Weiss <kevin.weiss@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -29,5 +29,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -16,9 +18,6 @@
|
||||
* @author Víctor Ariño <victor.arino@triagnosys.com>
|
||||
*/
|
||||
|
||||
#ifndef PN532_PARAMS_H
|
||||
#define PN532_PARAMS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -45,5 +44,4 @@ static const pn532_params_t pn532_conf[] = {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* PN532_PARAMS_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -32,5 +32,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -32,5 +32,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -41,5 +41,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Stefan Schmidt <stemschmidt@gmail.com>
|
||||
*/
|
||||
#ifndef INIT_DEV_H
|
||||
#define INIT_DEV_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -41,5 +41,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INIT_DEV_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup tests_gnrc_ipv6_nib Common header for GNRC's NIB tests
|
||||
* @ingroup tests
|
||||
@ -16,8 +18,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@ -43,5 +43,4 @@ void _tests_init(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup tests_gnrc_ipv6_nib Common header for GNRC's NIB tests
|
||||
* @ingroup tests
|
||||
@ -16,8 +18,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@ -45,5 +45,4 @@ void _common_set_up(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup tests_gnrc_ipv6_nib Common header for GNRC's NIB tests
|
||||
* @ingroup tests
|
||||
@ -16,8 +18,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@ -47,5 +47,4 @@ void _common_set_up(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup tests_gnrc_ipv6_nib Common header for GNRC's NIB tests
|
||||
* @ingroup tests
|
||||
@ -16,8 +18,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#include "net/gnrc/netif.h"
|
||||
|
||||
@ -106,5 +106,4 @@ void _test_trigger_recv(gnrc_netif_t *netif, const uint8_t *data,
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup tests_gnrc_ipv6_nib Common header for GNRC's NIB tests
|
||||
* @ingroup tests
|
||||
@ -16,8 +18,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@ -46,5 +46,4 @@ void _common_set_up(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup tests_gnrc_ipv6_nib Common header for GNRC's NIB tests
|
||||
* @ingroup tests
|
||||
@ -16,8 +18,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@ -46,5 +46,4 @@ void _common_set_up(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @defgroup tests_gnrc_ipv6_nib Common header for GNRC's NIB tests
|
||||
* @ingroup tests
|
||||
@ -16,8 +18,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@ -46,5 +46,4 @@ void _common_set_up(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef CONSTANTS_H
|
||||
#define CONSTANTS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -37,5 +37,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONSTANTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef STACK_H
|
||||
#define STACK_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
@ -114,5 +114,3 @@ bool _check_packet(const ipv6_addr_t *src, const ipv6_addr_t *dst,
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* STACK_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef CONSTANTS_H
|
||||
#define CONSTANTS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -38,5 +38,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONSTANTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef STACK_H
|
||||
#define STACK_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
@ -121,5 +121,3 @@ bool _check_packet(const ipv6_addr_t *src, const ipv6_addr_t *dst,
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* STACK_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author José I. Alamos <jose.alamos@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef TEST_COMMON_H
|
||||
#define TEST_COMMON_H
|
||||
|
||||
#include "net/ieee802154/radio.h"
|
||||
#if IS_USED(MODULE_SOCKET_ZEP)
|
||||
@ -62,5 +62,4 @@ void ieee802154_hal_test_init_devs(ieee802154_dev_cb_t cb, void *opaque);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TEST_COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief Common definitions for GNRC's NIB tests
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#include "net/gnrc/netif.h"
|
||||
|
||||
@ -95,5 +95,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup examples
|
||||
* @{
|
||||
@ -18,9 +20,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef TINYDTLS_KEYS_H
|
||||
#define TINYDTLS_KEYS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -37,5 +36,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TINYDTLS_KEYS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup boards_nrf52840dk_modded
|
||||
* @{
|
||||
@ -18,9 +20,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef PERIPH_CONF_H
|
||||
#define PERIPH_CONF_H
|
||||
|
||||
#include "kernel_defines.h"
|
||||
#include "periph_conf_common.h"
|
||||
|
||||
@ -69,5 +68,4 @@ static const uart_conf_t uart_config[] = {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* PERIPH_CONF_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests_periph_uart_locate_pins
|
||||
* @{
|
||||
@ -19,9 +21,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef SOFT_UART_PARAMS_H
|
||||
#define SOFT_UART_PARAMS_H
|
||||
|
||||
#include "soft_uart.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -39,5 +38,4 @@ extern soft_uart_conf_t soft_uart_config[];
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* SOFT_UART_PARAMS_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -14,9 +16,6 @@
|
||||
* @brief CNN parameters
|
||||
*/
|
||||
|
||||
#ifndef PARAMETER_H
|
||||
#define PARAMETER_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -69,5 +68,4 @@ extern "C" {
|
||||
} /* end extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /* PARAMETER_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -14,9 +16,6 @@
|
||||
* @brief CNN weights
|
||||
*/
|
||||
|
||||
#ifndef WEIGHTS_H
|
||||
#define WEIGHTS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -1768,5 +1767,4 @@ extern "C" {
|
||||
} /* end extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /* WEIGHTS_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -22,9 +24,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef EDHOC_KEYS_H
|
||||
#define EDHOC_KEYS_H
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "kernel_defines.h"
|
||||
@ -170,5 +169,3 @@ static const cred_db_entry_t cred_db[] = {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* EDHOC_KEYS_H */
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#ifndef MODEL_H
|
||||
#define MODEL_H
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -7791,4 +7791,3 @@ int32_t model_predict(const float *features, int32_t features_length) {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* MODEL_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
*/
|
||||
#ifndef CLI_H
|
||||
#define CLI_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
@ -89,5 +89,4 @@ int udp_cmd(int argc, char **argv);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CLI_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
*/
|
||||
#ifndef UTILITIES_H
|
||||
#define UTILITIES_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
@ -40,5 +40,4 @@ size_t hex2ints(uint8_t *out, const char *in);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* UTILITIES_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef CONSTANTS_H
|
||||
#define CONSTANTS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -51,5 +51,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONSTANTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef STACK_H
|
||||
#define STACK_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
@ -117,5 +117,3 @@ bool _check_6packet(const ipv6_addr_t *src, const ipv6_addr_t *dst,
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* STACK_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef CONSTANTS_H
|
||||
#define CONSTANTS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -52,5 +52,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONSTANTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef STACK_H
|
||||
#define STACK_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -32,5 +32,3 @@ void _net_init(void);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* STACK_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef CONSTANTS_H
|
||||
#define CONSTANTS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -52,5 +52,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONSTANTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef STACK_H
|
||||
#define STACK_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
@ -127,5 +127,3 @@ bool _check_6packet(const ipv6_addr_t *src, const ipv6_addr_t *dst,
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* STACK_H */
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
#ifndef FONTS_H
|
||||
#define FONTS_H
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -11,5 +10,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* FONTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -16,9 +18,6 @@
|
||||
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||||
*/
|
||||
|
||||
#ifndef NIMBLE_L2CAP_TEST_CONF_H
|
||||
#define NIMBLE_L2CAP_TEST_CONF_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -57,5 +56,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* NIMBLE_L2CAP_TEST_CONF_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef CONSTANTS_H
|
||||
#define CONSTANTS_H
|
||||
|
||||
#include "openwsn.h"
|
||||
|
||||
@ -40,5 +40,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONSTANTS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup pkg_openwsn
|
||||
* @{
|
||||
@ -19,9 +21,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef SCHEDULER_TYPES_H
|
||||
#define SCHEDULER_TYPES_H
|
||||
|
||||
#include "scheduler.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -38,5 +37,3 @@ typedef struct {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* SCHEDULER_TYPES_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @brief
|
||||
@ -17,8 +19,6 @@
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
#ifndef STACK_H
|
||||
#define STACK_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
@ -84,5 +84,3 @@ bool _check_packet(const ipv6_addr_t *src, const ipv6_addr_t *dst,
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* STACK_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
*
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef TINYDTLS_COMMON_H
|
||||
#define TINYDTLS_COMMON_H
|
||||
|
||||
#include "event.h"
|
||||
|
||||
@ -36,4 +36,3 @@ typedef struct {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* TINYDTLS_COMMON_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup examples
|
||||
* @{
|
||||
@ -18,9 +20,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef TINYDTLS_KEYS_H
|
||||
#define TINYDTLS_KEYS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -62,5 +61,3 @@ static const unsigned char ecdsa_pub_key_y[] = {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TINYDTLS_KEYS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @{
|
||||
*
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Juergen Fitschen <me@jue.yt>
|
||||
*/
|
||||
#ifndef FAKEMTD_H
|
||||
#define FAKEMTD_H
|
||||
|
||||
#include "mtd.h"
|
||||
|
||||
@ -72,5 +72,4 @@ typedef struct {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* FAKEMTD_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -18,9 +20,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef LOGO_H
|
||||
#define LOGO_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -1186,5 +1185,3 @@ static const uint8_t logo[] = {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* LOGO_H */
|
||||
|
||||
@ -6,8 +6,7 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#ifndef RIOT_LOGO_H
|
||||
#define RIOT_LOGO_H
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -1057,5 +1056,3 @@ const uint16_t picture[RIOT_LOGO_HEIGHT][RIOT_LOGO_WIDTH] = {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* RIOT_LOGO_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @{
|
||||
*
|
||||
@ -13,8 +15,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef CONGURE_IMPL_H
|
||||
#define CONGURE_IMPL_H
|
||||
|
||||
#include "congure/abe.h"
|
||||
|
||||
@ -32,5 +32,4 @@ void congure_abe_test_set_same_wnd_adv_res(bool value);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONGURE_IMPL_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @{
|
||||
*
|
||||
@ -13,8 +15,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef CONGURE_IMPL_H
|
||||
#define CONGURE_IMPL_H
|
||||
|
||||
#include "congure/quic.h"
|
||||
|
||||
@ -32,5 +32,4 @@ void *congure_quic_test_get_event_cb_arg(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONGURE_IMPL_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @{
|
||||
*
|
||||
@ -13,8 +15,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef CONGURE_IMPL_H
|
||||
#define CONGURE_IMPL_H
|
||||
|
||||
#include "congure/reno.h"
|
||||
|
||||
@ -32,5 +32,4 @@ void congure_reno_test_set_same_wnd_adv_res(bool value);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONGURE_IMPL_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @{
|
||||
*
|
||||
@ -13,8 +15,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef CONGURE_IMPL_H
|
||||
#define CONGURE_IMPL_H
|
||||
|
||||
#include "congure/mock.h"
|
||||
|
||||
@ -30,5 +30,4 @@ int congure_test_snd_setup(congure_test_snd_t *c, unsigned id);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONGURE_IMPL_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||
*/
|
||||
#ifndef TESTS_CPP_CTORS_H
|
||||
#define TESTS_CPP_CTORS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -45,5 +45,4 @@ namespace RIOTTestCPP {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CPP_CTORS_H */
|
||||
/** @} */
|
||||
|
||||
@ -7,6 +7,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -16,8 +18,6 @@
|
||||
*
|
||||
* @author Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de>
|
||||
*/
|
||||
#ifndef TESTS_CRYPTO_H
|
||||
#define TESTS_CRYPTO_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
@ -68,5 +68,4 @@ Test* tests_crypto_modes_ctr_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CRYPTO_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Nils Ollrogge <nils-ollrogge@outlook.de>
|
||||
*/
|
||||
#ifndef TESTS_CRYPTO_H
|
||||
#define TESTS_CRYPTO_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
@ -46,5 +46,4 @@ Test *tests_crypto_modes_ccm_tests_256(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CRYPTO_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup
|
||||
* @defgroup <name> <description>
|
||||
@ -18,9 +20,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TESTS_PSA_CBOR_ENC_DEC_H
|
||||
#define TESTS_PSA_CBOR_ENC_DEC_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -67,5 +66,4 @@ Test* tests_psa_crypto_enc_dec_protected_key(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_PSA_CBOR_ENC_DEC_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup
|
||||
* @defgroup <name> <description>
|
||||
@ -18,9 +20,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TESTS_PSA_PERSISTENT_STORAGE_H
|
||||
#define TESTS_PSA_PERSISTENT_STORAGE_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -57,5 +56,4 @@ Test* tests_psa_fail_overwrite_existing_key(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_PSA_PERSISTENT_STORAGE_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,8 +6,7 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#ifndef TEST_H
|
||||
#define TEST_H
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -132,5 +131,4 @@ void test_speed_range(uint32_t duration, uint32_t a, uint32_t b);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TEST_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,8 +6,7 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#ifndef RIOTBOOT_FLASHWRITE_H
|
||||
#define RIOTBOOT_FLASHWRITE_H
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -47,5 +46,3 @@ static inline riotboot_flashwrite_verify_sha256(digest,
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* RIOTBOOT_FLASHWRITE_H */
|
||||
|
||||
@ -6,8 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#ifndef UNITTESTS_CONSTANTS_H
|
||||
#define UNITTESTS_CONSTANTS_H
|
||||
#pragma once
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
@ -68,5 +68,4 @@ extern "C" {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* UNITTESTS_CONSTANTS_H */
|
||||
/** @} */
|
||||
|
||||
@ -26,8 +26,7 @@
|
||||
* prior written authorization from the authors.
|
||||
*/
|
||||
|
||||
#ifndef MAP_H
|
||||
#define MAP_H
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -55,5 +54,3 @@ extern "C" {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* MAP_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,7 @@
|
||||
*
|
||||
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||
*/
|
||||
#ifndef TESTS_ANALOG_UTIL_H
|
||||
#define TESTS_ANALOG_UTIL_H
|
||||
|
||||
#include "embUnit/embUnit.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -32,5 +33,4 @@ void tests_adc_util(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_ANALOG_UTIL_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,7 @@
|
||||
*
|
||||
* @author Martin Landsmann <Martin.Landsmann@HAW-Hamburg.de>
|
||||
*/
|
||||
#ifndef TESTS_BASE64_H
|
||||
#define TESTS_BASE64_H
|
||||
|
||||
#include "embUnit/embUnit.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -39,5 +40,4 @@ Test *tests_base64_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_BASE64_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
||||
*/
|
||||
#ifndef TESTS_BCD_H
|
||||
#define TESTS_BCD_H
|
||||
|
||||
#include "embUnit/embUnit.h"
|
||||
|
||||
@ -40,5 +40,4 @@ Test *tests_bcd_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_BCD_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author José I. Álamos <jose.alamos@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef TESTS_BHP_EVENT_H
|
||||
#define TESTS_BHP_EVENT_H
|
||||
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -33,5 +33,4 @@ void tests_bhp_event(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_BHP_EVENT_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author José I. Álamos <jose.alamos@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef TESTS_BHP_MSG_H
|
||||
#define TESTS_BHP_MSG_H
|
||||
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -33,5 +33,4 @@ void tests_bhp_msg(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_BHP_MSG_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,8 +6,7 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#ifndef TESTS_BLOOM_SETS_H
|
||||
#define TESTS_BLOOM_SETS_H
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -1031,5 +1030,3 @@ const char* const B[10] = {"interbedded",
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_BLOOM_SETS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de>
|
||||
*/
|
||||
#ifndef TESTS_BLOOM_H
|
||||
#define TESTS_BLOOM_H
|
||||
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -40,5 +40,4 @@ Test *tests_bloom_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_BLOOM_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -16,8 +18,6 @@
|
||||
* @author Hauke Petersen <hauke.petersen@fu-berlin>
|
||||
*/
|
||||
|
||||
#ifndef TESTS_BLUETIL_H
|
||||
#define TESTS_BLUETIL_H
|
||||
#include "embUnit/embUnit.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -33,5 +33,4 @@ void tests_bluetil(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_BLUETIL_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
||||
*/
|
||||
#ifndef TESTS_CHECKSUM_H
|
||||
#define TESTS_CHECKSUM_H
|
||||
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -110,5 +110,4 @@ Test *tests_checksum_ucrc16_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CHECKSUM_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,7 @@
|
||||
*
|
||||
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
||||
*/
|
||||
#ifndef TESTS_CLIF_H
|
||||
#define TESTS_CLIF_H
|
||||
|
||||
#include "embUnit/embUnit.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -39,5 +40,4 @@ Test *tests_clif_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CLIF_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
|
||||
*/
|
||||
#ifndef TESTS_CODING_H
|
||||
#define TESTS_CODING_H
|
||||
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -40,5 +40,4 @@ Test *tests_coding_xor_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CODING_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Cenk Gündoğan <mail@cgundogan.de>
|
||||
*/
|
||||
#ifndef TESTS_COLOR_H
|
||||
#define TESTS_COLOR_H
|
||||
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -33,5 +33,4 @@ void tests_color(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_COLOR_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||
*/
|
||||
#ifndef TESTS_CORE_XFA_H
|
||||
#define TESTS_CORE_XFA_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -31,6 +31,4 @@ typedef struct {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CORE_XFA_H */
|
||||
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -15,8 +17,6 @@
|
||||
*
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
*/
|
||||
#ifndef TESTS_CORE_H
|
||||
#define TESTS_CORE_H
|
||||
|
||||
#include "embUnit.h"
|
||||
|
||||
@ -110,5 +110,4 @@ Test *tests_core_macros_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CORE_H */
|
||||
/** @} */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
@ -19,9 +21,6 @@
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef CREDENTIALS_H
|
||||
#define CREDENTIALS_H
|
||||
|
||||
#include "net/credman.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -52,5 +51,3 @@ static const unsigned char ecdsa_pub_key_y[] = {
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CREDENTIALS_H */
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @addtogroup unittests
|
||||
* @{
|
||||
@ -16,8 +18,6 @@
|
||||
* @author Aiman Ismail <muhammadaimanbin.ismail@haw-hamburg.de>
|
||||
*/
|
||||
|
||||
#ifndef TESTS_CREDMAN_H
|
||||
#define TESTS_CREDMAN_H
|
||||
#include "embUnit/embUnit.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -40,5 +40,4 @@ Test *tests_credman_tests(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* TESTS_CREDMAN_H */
|
||||
/** @} */
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user