From f9c16675dc625c124345bb440aa9604af61ddb8d Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Mon, 7 Mar 2016 15:13:34 +0100 Subject: build: Add check target, fix packaging This adds a build target 'check', which executes a test suite for every daemon/library. Every test suite consists of a test driver that executes a function in a file with the same name as the function. The compile_debug script executes the 'check' target to validate there are no regressions. Packaging is also fixed and the prototype can be shipped as a tarball. --- src/lib/tests/linked_list.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/lib/tests/linked_list.c (limited to 'src/lib/tests/linked_list.c') diff --git a/src/lib/tests/linked_list.c b/src/lib/tests/linked_list.c new file mode 100644 index 00000000..2239b065 --- /dev/null +++ b/src/lib/tests/linked_list.c @@ -0,0 +1,26 @@ +/* + * Ouroboros - Copyright (C) 2016 + * + * Test of the linked list + * + * Sander Vrijders + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +int linked_list(int argc, char ** argv) +{ + return 0; +} -- cgit v1.2.3