* lib/utils.exp: Improve comments.
authorBen Elliston <bje@gnu.org>
Sat, 20 Feb 2016 01:36:29 +0000 (12:36 +1100)
committerBen Elliston <bje@gnu.org>
Sat, 20 Feb 2016 01:36:29 +0000 (12:36 +1100)
* NEWS: Update.

ChangeLog
NEWS
lib/utils.exp

index a66f40d..aa62d62 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2016-02-20  Ben Elliston  <bje@gnu.org>
 
+       * lib/utils.exp: Improve comments.
+       * NEWS: Update.
+
+2016-02-20  Ben Elliston  <bje@gnu.org>
+
        * lib/utils.exp (prune): Remove proc.
        * doc/ref.xml: Update documentation.
        * doc/dejagnu.texi: Regenerate.
diff --git a/NEWS b/NEWS
index ac4b98f..cd326a6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,11 @@ Changes since 1.5.3:
    2 if an exception is raised by the Tcl interpreter.
 3. runtest now exits with the standard exit codes of programs that are
    terminated by the SIGINT, SIGTERM and SIGQUIT signals.
+4. The user-visible utility procedures `absolute', `prune', `psource'
+   and `slay' have been removed.  If a testsuite uses any of these
+   procedures, a copy of the procedure should be made and placed in
+   the lib directory of the testsuite.
+
 
 Changes since 1.4.4:
 
index cb8c1e9..ec00cb1 100644 (file)
@@ -208,7 +208,7 @@ proc grep { args } {
 #
 # This proc hides the details of global `runtests' from the test scripts, and
 # implements uniform handling of "script arguments" where those arguments are
-# file names (ie: the "foo" in make check RUNTESTFLAGS="bar.exp=foo").
+# file names (eg, "foo.c" in make check RUNTESTFLAGS="bar.exp=foo.c").
 # "glob" style expressions are supported as well as multiple files (with
 # spaces between them).
 # Eg: RUNTESTFLAGS="bar.exp=foo1.c foo2.c foo3*.c bar/baz*.c"
@@ -228,16 +228,7 @@ proc runtest_file_p { runtests testcase } {
     return 1
 }
 
-#
-# Delete various system verbosities from TEXT on SYSTEM
-#
-# An example is:
-# ld.so: warning: /usr/lib/libc.so.1.8.1 has older revision than expected 9
-#
-# SYSTEM is typical $target_triplet or $host_triplet.
-#
 
-#
 # Compares two files line-by-line
 #     returns 1 it the files match,
 #     returns 0 if there was a file error,