Skip to content

Commit

Permalink
tests: add minimal test application
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Jul 12, 2015
1 parent 53b416e commit 10a6afe
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tests/minimal/Makefile
@@ -0,0 +1,19 @@
# name of your application
APPLICATION = minimal

# If no BOARD is found in the environment, use this default:
BOARD ?= native

# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..

#
CFLAGS += -DNDEBUG -DLOG_LEVEL=LOG_NONE

#
DISABLE_MODULE += auto_init

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1

include $(RIOTBASE)/Makefile.include
24 changes: 24 additions & 0 deletions tests/minimal/main.c
@@ -0,0 +1,24 @@
/*
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/

/**
* @ingroup test
* @{
*
* @file
* @brief minimal RIOT application, intended as size test
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*
* @}
*/

int main(void)
{
return 0;
}

0 comments on commit 10a6afe

Please sign in to comment.