summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2009-12-29 09:25:40 -0700
committerEric Blake <ebb9@byu.net>2009-12-29 20:55:35 -0700
commitba2d9dffa77a8a1ff255b51820d2d791c909e779 (patch)
treebee99534536b556798e223fff39c9d2269cf4900
parentfe21e5ff85f0873e5c03487cae2bd4b65a7795ce (diff)
downloadgnulib-ba2d9dffa77a8a1ff255b51820d2d791c909e779.tar.gz
tests: fix license on several tests
The use of GPLv2+ was a relic of copy-and-paste, and not intentional. * tests/test-des.c: Update to GPLv3+. * tests/test-flock.c: Likewise. * tests/test-fsync.c: Likewise. * tests/test-futimens.h: Likewise. * tests/test-gc-arcfour.c: Likewise. * tests/test-gc-arctwo.c: Likewise. * tests/test-gc-des.c: Likewise. * tests/test-gc-hmac-md5.c: Likewise. * tests/test-gc-hmac-sha1.c: Likewise. * tests/test-gc-md2.c: Likewise. * tests/test-gc-md4.c: Likewise. * tests/test-gc-md5.c: Likewise. * tests/test-gc-pbkdf2-sha1.c: Likewise. * tests/test-gc-rijndael.c: Likewise. * tests/test-gc-sha1.c: Likewise. * tests/test-gc.c: Likewise. * tests/test-getcwd.c: Likewise. * tests/test-link.c: Likewise. * tests/test-link.h: Likewise. * tests/test-lutimens.h: Likewise. * tests/test-md2.c: Likewise. * tests/test-md4.c: Likewise. * tests/test-mkdir.h: Likewise. * tests/test-rename.c: Likewise. * tests/test-rename.h: Likewise. * tests/test-safe-alloc.c: Likewise. * tests/test-utimens-common.h: Likewise. * tests/test-utimens.h: Likewise. Signed-off-by: Eric Blake <ebb9@byu.net>
-rw-r--r--ChangeLog30
-rw-r--r--tests/test-des.c2
-rw-r--r--tests/test-flock.c2
-rw-r--r--tests/test-fsync.c2
-rw-r--r--tests/test-futimens.h2
-rw-r--r--tests/test-gc-arcfour.c2
-rw-r--r--tests/test-gc-arctwo.c2
-rw-r--r--tests/test-gc-des.c2
-rw-r--r--tests/test-gc-hmac-md5.c2
-rw-r--r--tests/test-gc-hmac-sha1.c2
-rw-r--r--tests/test-gc-md2.c2
-rw-r--r--tests/test-gc-md4.c2
-rw-r--r--tests/test-gc-md5.c2
-rw-r--r--tests/test-gc-pbkdf2-sha1.c2
-rw-r--r--tests/test-gc-rijndael.c2
-rw-r--r--tests/test-gc-sha1.c2
-rw-r--r--tests/test-gc.c2
-rw-r--r--tests/test-getcwd.c2
-rw-r--r--tests/test-link.c2
-rw-r--r--tests/test-link.h2
-rw-r--r--tests/test-lutimens.h2
-rw-r--r--tests/test-md2.c2
-rw-r--r--tests/test-md4.c2
-rw-r--r--tests/test-mkdir.h2
-rw-r--r--tests/test-rename.c2
-rw-r--r--tests/test-rename.h2
-rw-r--r--tests/test-safe-alloc.c2
-rw-r--r--tests/test-utimens-common.h2
-rw-r--r--tests/test-utimens.h2
29 files changed, 58 insertions, 28 deletions
diff --git a/ChangeLog b/ChangeLog
index 8bd805ada1..2e9b1c8b39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,35 @@
2009-12-29 Eric Blake <ebb9@byu.net>
+ tests: fix license on several tests
+ * tests/test-des.c: Update to GPLv3+.
+ * tests/test-flock.c: Likewise.
+ * tests/test-fsync.c: Likewise.
+ * tests/test-futimens.h: Likewise.
+ * tests/test-gc-arcfour.c: Likewise.
+ * tests/test-gc-arctwo.c: Likewise.
+ * tests/test-gc-des.c: Likewise.
+ * tests/test-gc-hmac-md5.c: Likewise.
+ * tests/test-gc-hmac-sha1.c: Likewise.
+ * tests/test-gc-md2.c: Likewise.
+ * tests/test-gc-md4.c: Likewise.
+ * tests/test-gc-md5.c: Likewise.
+ * tests/test-gc-pbkdf2-sha1.c: Likewise.
+ * tests/test-gc-rijndael.c: Likewise.
+ * tests/test-gc-sha1.c: Likewise.
+ * tests/test-gc.c: Likewise.
+ * tests/test-getcwd.c: Likewise.
+ * tests/test-link.c: Likewise.
+ * tests/test-link.h: Likewise.
+ * tests/test-lutimens.h: Likewise.
+ * tests/test-md2.c: Likewise.
+ * tests/test-md4.c: Likewise.
+ * tests/test-mkdir.h: Likewise.
+ * tests/test-rename.c: Likewise.
+ * tests/test-rename.h: Likewise.
+ * tests/test-safe-alloc.c: Likewise.
+ * tests/test-utimens-common.h: Likewise.
+ * tests/test-utimens.h: Likewise.
+
maint: sync license texts
* config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
* doc/gpl-3.0.texi: Revert copyright year update.
diff --git a/tests/test-des.c b/tests/test-des.c
index ddd2e7f134..cbb8178172 100644
--- a/tests/test-des.c
+++ b/tests/test-des.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-flock.c b/tests/test-flock.c
index beae8c8175..5454d1792c 100644
--- a/tests/test-flock.c
+++ b/tests/test-flock.c
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-fsync.c b/tests/test-fsync.c
index 12a56b2ce9..26c5e9a57b 100644
--- a/tests/test-fsync.c
+++ b/tests/test-fsync.c
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-futimens.h b/tests/test-futimens.h
index 795aa9e56a..f93b6b8b6c 100644
--- a/tests/test-futimens.h
+++ b/tests/test-futimens.h
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-arcfour.c b/tests/test-gc-arcfour.c
index 31fa2377b0..3de2e67266 100644
--- a/tests/test-gc-arcfour.c
+++ b/tests/test-gc-arcfour.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-arctwo.c b/tests/test-gc-arctwo.c
index 8533612aff..c6dfe95ff2 100644
--- a/tests/test-gc-arctwo.c
+++ b/tests/test-gc-arctwo.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-des.c b/tests/test-gc-des.c
index 5d7e13b57d..6b078956e8 100644
--- a/tests/test-gc-des.c
+++ b/tests/test-gc-des.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-hmac-md5.c b/tests/test-gc-hmac-md5.c
index e2fac44455..9ed1991853 100644
--- a/tests/test-gc-hmac-md5.c
+++ b/tests/test-gc-hmac-md5.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-hmac-sha1.c b/tests/test-gc-hmac-sha1.c
index 09ebf2cff0..7f5404981d 100644
--- a/tests/test-gc-hmac-sha1.c
+++ b/tests/test-gc-hmac-sha1.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-md2.c b/tests/test-gc-md2.c
index 61e2720510..db853118b7 100644
--- a/tests/test-gc-md2.c
+++ b/tests/test-gc-md2.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-md4.c b/tests/test-gc-md4.c
index db79e3907d..00c8434d3c 100644
--- a/tests/test-gc-md4.c
+++ b/tests/test-gc-md4.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-md5.c b/tests/test-gc-md5.c
index cdfc7bcebc..fdaa6a896b 100644
--- a/tests/test-gc-md5.c
+++ b/tests/test-gc-md5.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-pbkdf2-sha1.c b/tests/test-gc-pbkdf2-sha1.c
index 4e84596769..4726aa6992 100644
--- a/tests/test-gc-pbkdf2-sha1.c
+++ b/tests/test-gc-pbkdf2-sha1.c
@@ -3,7 +3,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-rijndael.c b/tests/test-gc-rijndael.c
index 9b9d3849da..ddbbe0b53c 100644
--- a/tests/test-gc-rijndael.c
+++ b/tests/test-gc-rijndael.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc-sha1.c b/tests/test-gc-sha1.c
index 55565e77b1..a0bdf02a05 100644
--- a/tests/test-gc-sha1.c
+++ b/tests/test-gc-sha1.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-gc.c b/tests/test-gc.c
index 204142e3f6..f2afa47488 100644
--- a/tests/test-gc.c
+++ b/tests/test-gc.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-getcwd.c b/tests/test-getcwd.c
index 1f6306d0a2..46acf8ad73 100644
--- a/tests/test-getcwd.c
+++ b/tests/test-getcwd.c
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-link.c b/tests/test-link.c
index 9c1ce36210..bd2f9cb9ad 100644
--- a/tests/test-link.c
+++ b/tests/test-link.c
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-link.h b/tests/test-link.h
index 0d58262031..99fd3dfdcc 100644
--- a/tests/test-link.h
+++ b/tests/test-link.h
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-lutimens.h b/tests/test-lutimens.h
index f19df80d7e..5397ae9afa 100644
--- a/tests/test-lutimens.h
+++ b/tests/test-lutimens.h
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-md2.c b/tests/test-md2.c
index 5aaa168ba3..c53e8d3f27 100644
--- a/tests/test-md2.c
+++ b/tests/test-md2.c
@@ -3,7 +3,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-md4.c b/tests/test-md4.c
index 4647c56e5a..1955aee86b 100644
--- a/tests/test-md4.c
+++ b/tests/test-md4.c
@@ -4,7 +4,7 @@
*
* 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, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
diff --git a/tests/test-mkdir.h b/tests/test-mkdir.h
index 61a3ef6fe5..5707485dee 100644
--- a/tests/test-mkdir.h
+++ b/tests/test-mkdir.h
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-rename.c b/tests/test-rename.c
index 17cd025cf8..25db639220 100644
--- a/tests/test-rename.c
+++ b/tests/test-rename.c
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-rename.h b/tests/test-rename.h
index 63ec8ca974..a43300d3a8 100644
--- a/tests/test-rename.h
+++ b/tests/test-rename.h
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-safe-alloc.c b/tests/test-safe-alloc.c
index 96a1285d3f..0513c29079 100644
--- a/tests/test-safe-alloc.c
+++ b/tests/test-safe-alloc.c
@@ -6,7 +6,7 @@
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
+ * version 3.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/tests/test-utimens-common.h b/tests/test-utimens-common.h
index 30fd886748..7077f475cf 100644
--- a/tests/test-utimens-common.h
+++ b/tests/test-utimens-common.h
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
diff --git a/tests/test-utimens.h b/tests/test-utimens.h
index bc2599e5df..25a7652feb 100644
--- a/tests/test-utimens.h
+++ b/tests/test-utimens.h
@@ -3,7 +3,7 @@
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
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,