]> granicus.if.org Git - neomutt/commitdiff
tests: add copyright blocks
authorRichard Russon <rich@flatcap.org>
Wed, 17 Apr 2019 11:40:40 +0000 (12:40 +0100)
committerRichard Russon <rich@flatcap.org>
Wed, 24 Apr 2019 11:16:16 +0000 (12:16 +0100)
12 files changed:
test/address.c
test/base64.c
test/file.c
test/main.c
test/md5.c
test/pattern/comp.c
test/pattern/dummy.c
test/pattern/extract.c
test/pattern/main.c
test/rfc2047.c
test/string/main.c
test/url.c

index fb69ac78dadae5a61f75135d7246c174e95b399f..c0acfa18dd3438e1db245871775fdfc3f0eb86c5 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code for the Address object
+ *
+ * @authors
+ * Copyright (C) 2018 Simon Symeonidis <lethaljellybean@gmail.com>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #define TEST_NO_MAIN
 #include "acutest.h"
 #include "address/lib.h"
index 4b0b47f5948b654fc9937578c8e9708c83ac08a0..60847bb0b71d3fb5fd89bec10279506c3d774e69 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code for Base 64 Encoding
+ *
+ * @authors
+ * Copyright (C) 2018 Pietro Cerutti <gahr@gahr.ch>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #define TEST_NO_MAIN
 #include "acutest.h"
 
index 89525ce0697c72d872fedc3416acc5aef688c5c3..74371d7e2d2175a80211c1571a001293c79deb52 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code for the file operations
+ *
+ * @authors
+ * Copyright (C) 2018 Ian Zimmerman
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #define TEST_NO_MAIN
 #include "acutest.h"
 #include <stdbool.h>
index 0065d18ef7737cb1e7dd69bf79b22df2e9dd0e9c..481901c49b1e4ee42b2cc4ed953a095cf61a1336 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code hub
+ *
+ * @authors
+ * Copyright (C) 2018 Pietro Cerutti <gahr@gahr.ch>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #include "acutest.h"
 
 /******************************************************************************
index d5e997430338200d9861e59cba0944aee9a16edd..11a94694df23ee45b091c6121f72dfda0e7d1127 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code for MD5 Encoding
+ *
+ * @authors
+ * Copyright (C) 2018 Pietro Cerutti <gahr@gahr.ch>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #define TEST_NO_MAIN
 #include "acutest.h"
 
index ae8e2df5819c2a3d60569716ade8728f05fde153..1f7fb6d45c27dae8630701cce23b571bf24590c8 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code for Patterns
+ *
+ * @authors
+ * Copyright (C) 2018 Naveen Nathan <naveen@lastninja.net>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #define TEST_NO_MAIN
 #define MAIN_C 1
 #include "acutest.h"
index 51eb077fec64550c80f67720b18a06baac9f22e5..25af453d11220c80b739a1b26ae3e64aff5d0d5e 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Dummy code for working around build problems
+ *
+ * @authors
+ * Copyright (C) 2018 Naveen Nathan <naveen@lastninja.net>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #include "config.h"
 #include <stdbool.h>
 #include <stdio.h>
index 3ec9ab111173d3f93a50d3b263a2f2e2aa64bf0b..fd4849291a0e95c8e21b6f979162932b7a792a3e 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Dummy code for working around build problems
+ *
+ * @authors
+ * Copyright (C) 2018 Naveen Nathan <naveen@lastninja.net>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #include "config.h"
 #include <string.h>
 #include "mutt/mutt.h"
index 2843352b60085bce4d1d36b81d98f5fbe2b46459..757c91e70ee8a837074370b1136620ee8a4bd91b 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Pattern Testing
+ *
+ * @authors
+ * Copyright (C) 2018 Naveen Nathan <naveen@lastninja.net>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #include "acutest.h"
 
 /******************************************************************************
index 2debc3990d208a78cfdf3d598eac31df5f353bd6..baad7c249a27742d8e25fa6200bbd2148032e257 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code for RFC2047 Encoding
+ *
+ * @authors
+ * Copyright (C) 2018 Pietro Cerutti <gahr@gahr.ch>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #define TEST_NO_MAIN
 #include "acutest.h"
 
index cfcf8cc2074e4e2e18b2db0dc11baefc6f186b2f..15fd0356fcf468e89fffd75826f75dfdd51c7d08 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code for String Operations
+ *
+ * @authors
+ * Copyright (C) 2019 Richard Russon <rich@flatcap.org>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #include "acutest.h"
 
 /******************************************************************************
index 4b6cfa036287f627364e3e695d7e427c546490e9..139e313ce4d1b6cf3c96ac8f986011a9320d7299 100644 (file)
@@ -1,3 +1,25 @@
+/**
+ * @file
+ * Test code for Url Operations
+ *
+ * @authors
+ * Copyright (C) 2018 Pietro Cerutti <gahr@gahr.ch>
+ *
+ * @copyright
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #define TEST_NO_MAIN
 #include "acutest.h"
 #include "email/url.h"