aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2006-01-01 07:00:11 +0000
committerBen Elliston <bje@gnu.org>2006-01-01 07:00:11 +0000
commit97ce8881329877b6b2e87bbf4d19e4ad5acbd435 (patch)
treef6af2288f98795e8d7f87427097785e935fe7678
parent10992a2ddd1e16c7bebc9b9a5241f8b976fa6f31 (diff)
downloaddejagnu-97ce8881329877b6b2e87bbf4d19e4ad5acbd435.zip
dejagnu-97ce8881329877b6b2e87bbf4d19e4ad5acbd435.tar.gz
dejagnu-97ce8881329877b6b2e87bbf4d19e4ad5acbd435.tar.bz2
* config/default.exp, config/unix.exp, config/vxworks.exp,
lib/debugger.exp, lib/dejagnu.exp, lib/framework.exp, lib/libgloss.exp, lib/remote.exp, testsuite/lib/util-defs.exp: Formatting fixes. * dejagnu.h, testsuite/config/default.exp, testsuite/lib/libsup.exp, testsuite/libdejagnu/tunit.exp, testsuite/libdejagnu/unit.cc, testsuite/runtest.all/libs.exp, testsuite/runtest.all/options.exp, testsuite/runtest.all/stats-sub.exp, testsuite/runtest.all/stats.exp: Update copyright notice and FSF office address. Remove bug reporting address, as it is now maintained centrally in the README file.
-rw-r--r--ChangeLog15
-rw-r--r--config/default.exp2
-rw-r--r--config/unix.exp2
-rw-r--r--config/vxworks.exp4
-rw-r--r--dejagnu.h6
-rw-r--r--lib/debugger.exp2
-rwxr-xr-xlib/dejagnu.exp2
-rw-r--r--lib/framework.exp2
-rw-r--r--lib/libgloss.exp2
-rw-r--r--lib/remote.exp2
-rw-r--r--testsuite/config/default.exp28
-rw-r--r--testsuite/lib/libsup.exp30
-rw-r--r--testsuite/lib/util-defs.exp2
-rw-r--r--testsuite/libdejagnu/tunit.exp8
-rw-r--r--testsuite/libdejagnu/unit.cc4
-rw-r--r--testsuite/runtest.all/libs.exp8
-rw-r--r--testsuite/runtest.all/options.exp14
-rw-r--r--testsuite/runtest.all/stats-sub.exp8
-rw-r--r--testsuite/runtest.all/stats.exp12
19 files changed, 78 insertions, 75 deletions
diff --git a/ChangeLog b/ChangeLog
index 979ec6d..dbd838e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2006-01-01 Ben Elliston <bje@gnu.org>
+
+ * config/default.exp, config/unix.exp, config/vxworks.exp,
+ lib/debugger.exp, lib/dejagnu.exp, lib/framework.exp,
+ lib/libgloss.exp, lib/remote.exp, testsuite/lib/util-defs.exp:
+ Formatting fixes.
+ * dejagnu.h, testsuite/config/default.exp,
+ testsuite/lib/libsup.exp, testsuite/libdejagnu/tunit.exp,
+ testsuite/libdejagnu/unit.cc, testsuite/runtest.all/libs.exp,
+ testsuite/runtest.all/options.exp,
+ testsuite/runtest.all/stats-sub.exp,
+ testsuite/runtest.all/stats.exp: Update copyright notice and FSF
+ office address. Remove bug reporting address, as it is now
+ maintained centrally in the README file.
+
2005-12-31 Ben Elliston <bje@gnu.org>
* testsuite/runtest.all/utils.test: Don't bother mentioning
diff --git a/config/default.exp b/config/default.exp
index 6e8bbcc..1d680be 100644
--- a/config/default.exp
+++ b/config/default.exp
@@ -17,7 +17,7 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
proc ${tool}_version { } {
verbose "WARNING: Using the default proc for tool_version" 2
diff --git a/config/unix.exp b/config/unix.exp
index 3a7a14d..1dcf06e 100644
--- a/config/unix.exp
+++ b/config/unix.exp
@@ -17,7 +17,7 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
if ![info exists board] {
error "must set $board before loading unix.exp"
diff --git a/config/vxworks.exp b/config/vxworks.exp
index a5c1cd3..44ca48c 100644
--- a/config/vxworks.exp
+++ b/config/vxworks.exp
@@ -17,8 +17,8 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was originally written by Rob Savoye. (rob@welcomehome.org)
-# and modified by Bob Manson (manson@cygnus.com)
+# This file was originally written by Rob Savoye <rob@welcomehome.org>
+# and modified by Bob Manson <manson@cygnus.com>.
#
# Try to boot the machine into the requested OS.
diff --git a/dejagnu.h b/dejagnu.h
index c4fb903..cc2be37 100644
--- a/dejagnu.h
+++ b/dejagnu.h
@@ -10,10 +10,10 @@
* 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.
+ * along with DejaGnu; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __DEJAGNU_H__
diff --git a/lib/debugger.exp b/lib/debugger.exp
index 08b1001..cc43949 100644
--- a/lib/debugger.exp
+++ b/lib/debugger.exp
@@ -17,7 +17,7 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
#
# Dump the values of a shell expression representing variable
diff --git a/lib/dejagnu.exp b/lib/dejagnu.exp
index 6809f0e..1ed2dae 100755
--- a/lib/dejagnu.exp
+++ b/lib/dejagnu.exp
@@ -17,7 +17,7 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye (rob@welcomehome.org).
+# This file was written by Rob Savoye <rob@welcomehome.org>.
# A hairy pattern to recognize text.
set text "\[- A-Za-z0-9\.\;\"\_\:\'\`\(\)\!\#\=\+\?\&\*]"
diff --git a/lib/framework.exp b/lib/framework.exp
index 7c87915..818f8ba 100644
--- a/lib/framework.exp
+++ b/lib/framework.exp
@@ -17,7 +17,7 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
# These variables are local to this file.
# This or more warnings and a test fails.
diff --git a/lib/libgloss.exp b/lib/libgloss.exp
index fc4be54..9f02520 100644
--- a/lib/libgloss.exp
+++ b/lib/libgloss.exp
@@ -17,7 +17,7 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
# this contains a list of gcc options and their respective directories.
diff --git a/lib/remote.exp b/lib/remote.exp
index 6665703..5a2ab16 100644
--- a/lib/remote.exp
+++ b/lib/remote.exp
@@ -17,7 +17,7 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
# Load various protocol support modules.
diff --git a/testsuite/config/default.exp b/testsuite/config/default.exp
index 02a910e..d5e11c5 100644
--- a/testsuite/config/default.exp
+++ b/testsuite/config/default.exp
@@ -1,23 +1,23 @@
-# Copyright (C) 1992 - 2002, 2003 Free Software Foundation, Inc.
-
-# 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
+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+# 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
+#
+# This file is part of DejaGnu.
+#
+# DejaGnu 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.
+# DejaGnu 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.
-
-# Please email any bugs, comments, and/or additions to this file to:
-# bug-dejagnu@gnu.org
+# along with DejaGnu; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
global RUNTEST
if ![info exists RUNTEST] then {
diff --git a/testsuite/lib/libsup.exp b/testsuite/lib/libsup.exp
index 07b89db..80d359d 100644
--- a/testsuite/lib/libsup.exp
+++ b/testsuite/lib/libsup.exp
@@ -1,25 +1,23 @@
-# Copyright (C) 1992 - 2002, 2003 Free Software Foundation, Inc.
-
-# 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
+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+# 2001, 2002, 2003 Free Software Foundation, Inc.
+#
+# This file is part of DejaGnu.
+#
+# DejaGnu 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.
+# DejaGnu 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.
+# along with DejaGnu; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# Please email any bugs, comments, and/or additions to this file to:
-# bug-dejagnu@gnu.org
-
-#
-# Setup an environment so we can execute library procs without DejaGnu
-#
+# Setup an environment so we can execute library procs without DejaGnu.
#
# Create a default environment and start expect.
diff --git a/testsuite/lib/util-defs.exp b/testsuite/lib/util-defs.exp
index a2016d6..ef72590 100644
--- a/testsuite/lib/util-defs.exp
+++ b/testsuite/lib/util-defs.exp
@@ -17,7 +17,7 @@
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
#
# Run a utility and test the result.
diff --git a/testsuite/libdejagnu/tunit.exp b/testsuite/libdejagnu/tunit.exp
index 1a97368..dc74a42 100644
--- a/testsuite/libdejagnu/tunit.exp
+++ b/testsuite/libdejagnu/tunit.exp
@@ -1,5 +1,6 @@
-# Copyright (C) 1992 - 2002, 2003 Free Software Foundation, Inc.
-
+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+# 2001, 2002, 2003 Free Software Foundation, Inc.
+#
# 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
@@ -14,9 +15,6 @@
# along with this program; if not, write to the Free Software
# Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# Please email any bugs, comments, and/or additions to this file to:
-# bug-dejagnu@gnu.org
-
load_lib "dejagnu.exp"
# Uncomment these for debugging help
diff --git a/testsuite/libdejagnu/unit.cc b/testsuite/libdejagnu/unit.cc
index 135888b..e010cf2 100644
--- a/testsuite/libdejagnu/unit.cc
+++ b/testsuite/libdejagnu/unit.cc
@@ -12,8 +12,8 @@
// 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.
+// along with DejaGnu; if not, write to the Free Software Foundation,
+// Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
// Please email any bugs, comments, and/or additions to this file to:
// bug-dejagnu@gnu.org
diff --git a/testsuite/runtest.all/libs.exp b/testsuite/runtest.all/libs.exp
index 43dc7c0..f142057 100644
--- a/testsuite/runtest.all/libs.exp
+++ b/testsuite/runtest.all/libs.exp
@@ -1,5 +1,6 @@
-# Copyright (C) 1997 - 2002, 2003 Free Software Foundation, Inc.
-
+# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Free Software Foundation, Inc.
+#
# 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
@@ -14,9 +15,6 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# Please email any bugs, comments, and/or additions to this file to:
-# bug-dejagnu@gnu.org
-
load_lib libsup.exp
proc process_test { test } {
diff --git a/testsuite/runtest.all/options.exp b/testsuite/runtest.all/options.exp
index 8f2ca78..b9b4ae0 100644
--- a/testsuite/runtest.all/options.exp
+++ b/testsuite/runtest.all/options.exp
@@ -1,5 +1,6 @@
-# Copyright (C) 1992 - 2002,2003 Free Software Foundation, Inc.
-
+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+# 20001, 2002, 2003 Free Software Foundation, Inc.
+#
# 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
@@ -11,13 +12,10 @@
# 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.
-
-# Please email any bugs, comments, and/or additions to this file to:
-# bug-dejagnu@gnu.org
+# along with DejaGnu; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# This file was written by Rob Savoye. (rob@welcomehome.org)
+# This file was written by Rob Savoye <rob@welcomehome.org>.
load_lib util-defs.exp
diff --git a/testsuite/runtest.all/stats-sub.exp b/testsuite/runtest.all/stats-sub.exp
index 990b46c..c7b4e09 100644
--- a/testsuite/runtest.all/stats-sub.exp
+++ b/testsuite/runtest.all/stats-sub.exp
@@ -1,5 +1,6 @@
-# Copyright (C) 1997 - 2002, 2003 Free Software Foundation, Inc.
-
+# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Free Software Foundation, Inc.
+#
# 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
@@ -14,9 +15,6 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
-# Please email any bugs, comments, and/or additions to this file to:
-# bug-dejagnu@gnu.org
-
# Subordinate to stats.exp.
# If not called by stats.exp, quit now.
diff --git a/testsuite/runtest.all/stats.exp b/testsuite/runtest.all/stats.exp
index 11a54f2..11ee1c7 100644
--- a/testsuite/runtest.all/stats.exp
+++ b/testsuite/runtest.all/stats.exp
@@ -1,5 +1,6 @@
-# Copyright (C) 1995 - 2002, 2003 Free Software Foundation, Inc.
-
+# Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Free Software Foundation, Inc.
+#
# 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
@@ -11,11 +12,8 @@
# 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.
-
-# Please email any bugs, comments, and/or additions to this file to:
-# bug-dejagnu@gnu.org
+# along with DejaGnu; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
# This file tests pass/fail/etc.
# The way we do this is to recursively invoke ourselves on a small testsuite