Skip to content
Snippets Groups Projects
Commit beb91163 authored by René Kijewski's avatar René Kijewski Committed by Martine Lenders
Browse files

unittests: Move tests-core into subdirectoy

parent 1b042e75
No related branches found
No related tags found
No related merge requests found
MODULE = tests-core
include $(RIOTBASE)/Makefile.base
/*
* Copyright (C) 2014 Martin Lenders
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
*/
#include "tests-core.h"
void tests_core(void)
{
TESTS_RUN(tests_core_atomic_tests());
TESTS_RUN(tests_core_bitarithm_tests());
TESTS_RUN(tests_core_cib_tests());
TESTS_RUN(tests_core_clist_tests());
TESTS_RUN(tests_core_lifo_tests());
TESTS_RUN(tests_core_queue_tests());
}
......@@ -18,7 +18,13 @@
*/
#ifndef __TESTS_CORE_H_
#define __TESTS_CORE_H_
#include "embUnit/embUnit.h"
#include "../unittests.h"
/**
* @brief The entry point of this test suite.
*/
void tests_core(void);
/**
* @brief Generates tests atomic.h
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment