]> granicus.if.org Git - check/commitdiff
GNUified source files with copyright notice
authoramalec <amalec@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Fri, 1 Jun 2001 15:44:43 +0000 (15:44 +0000)
committeramalec <amalec@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Fri, 1 Jun 2001 15:44:43 +0000 (15:44 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@21 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 files changed:
check/Makefile.in
check/src/Makefile.in
check/src/check.c
check/src/check.h
check/src/check_impl.h
check/src/check_msg.c
check/src/check_msg.h
check/src/check_run.c
check/src/error.c
check/src/error.h
check/src/list.c
check/src/list.h
check/tests/Makefile.in

index f49e2f430e25617627d2afe096d5afcdaedf2099..b8c5b4c9e9f91abefaf106d97ca0a64f9883037c 100644 (file)
@@ -64,6 +64,8 @@ MAKEINFO = @MAKEINFO@
 PACKAGE = @PACKAGE@
 RANLIB = @RANLIB@
 VERSION = @VERSION@
+have_lyx = @have_lyx@
+have_sgmltools = @have_sgmltools@
 
 SUBDIRS = src tests doc
 
index 5769360f77f80ca0cfd2b45b114ebfdb3627bd89..d07e791ba64ba4ee548358186aac9b55c5d9a800 100644 (file)
@@ -64,6 +64,8 @@ MAKEINFO = @MAKEINFO@
 PACKAGE = @PACKAGE@
 RANLIB = @RANLIB@
 VERSION = @VERSION@
+have_lyx = @have_lyx@
+have_sgmltools = @have_sgmltools@
 
 lib_LIBRARIES = libcheck.a
 
index ef8f75dd12941de3f58696dfa8a483ab3c1bcd26..9ef86a5dbfd82ed998ce94e0ca3463beec8db627 100644 (file)
@@ -1,3 +1,21 @@
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
 #include <string.h>
 #include "error.h"
 #include "list.h"
index b14d8b166cd18ab66c19f37e0f7a456519d7bd9a..6e8d9264276c2359f54fe96445c86094b5e22243 100644 (file)
@@ -1,6 +1,25 @@
 #ifndef CHECK_H
 #define CHECK_H
 
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 /* Magic values */
 enum {
   CMAXMSG = 100, /* maximum length of a message, including terminating nul */
index 8f97a68aa0497f34ec6c0502c7e07e2650187022..2354076174283223e8bc59f28029193c43c8a98c 100644 (file)
@@ -1,6 +1,25 @@
 #ifndef CHECK_IMPL_H
 #define CHECK_IMPL_H
 
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 /* This header should be included by any module that needs
    to know the implementation details of the check structures
    Include list.h before this header
index afcd275447cf33d0711ee45c48dfdca90d2b2fa3..76247bc7b077f14ed89ab60fa63ec8c6a32ea2f7 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 #include <errno.h>
 #include <string.h>
 #include <stdio.h>
index a510b4d6ebf39c0be68a80c2223c405c7788e172..76ab94ad68097fbb0fffc641d289890a7e7ffff4 100644 (file)
@@ -1,6 +1,25 @@
 #ifndef CHECK_MSG_H
 #define CHECK_MSG_H
 
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 /* Functions implementing messaging during test runs */
 /* check.h must be included before this header */
 
index eeef8cffa3db042f3300cdd55da649f64d7de06c..3e9cbfbb80982d26265b0dd7d7ec0492bbf0f5c6 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 #include <sys/types.h>
 #include <sys/wait.h>
 #include <unistd.h>
index 8fcb04d2a51c23da0f3f6e8232a9550faf9f7e2b..f2227a2b553b19b2365371166583b0f9d888d232 100644 (file)
@@ -5,6 +5,25 @@
 #include <errno.h>
 #include "error.h"
 
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 void eprintf (char *fmt, ...)
 {
   va_list args;
index cca87cc5595b50f090f64dc2ae25e62070ace3a4..01c2e136c3ac38366d08bc8e34fc01a7fdf0a6a1 100644 (file)
@@ -1,6 +1,25 @@
 #ifndef ERROR_H
 #define ERROR_H
 
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 /* Include stdlib.h beforehand */
 
 /* Print error message and die
index fa7d3e553ce75411aa665c0b3c16f760666f0fd4..5e2d04a13ae82266bacc6e0f47d37a63216002f7 100644 (file)
@@ -2,6 +2,25 @@
 #include "list.h"
 #include "error.h"
 
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 enum {
   LINIT = 1,
   LGROW = 2
index 05210112b460c79b56fd4eefe06f9b43721a968b..65cb24f356918e5869e6bf470bec3bc484cb4a27 100644 (file)
@@ -1,6 +1,25 @@
 #ifndef LIST_H
 #define LIST_H
 
+/*
+  Check: a unit test framework for C
+  Copyright (C) 2001, Arien Malec
+
+  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 typedef struct List List;
 
 /* Create an empty list */
index c3b97b059789c51b1d0e943fe9e20f6c30a3ff35..0f473451d51b6bc751f841c4711a8a934a9dfce9 100644 (file)
@@ -64,6 +64,8 @@ MAKEINFO = @MAKEINFO@
 PACKAGE = @PACKAGE@
 RANLIB = @RANLIB@
 VERSION = @VERSION@
+have_lyx = @have_lyx@
+have_sgmltools = @have_sgmltools@
 
 TESTS = check_check check_list check_check_msg