* TODO: Update.
authorBen Elliston <bje@gnu.org>
Mon, 15 Feb 2016 04:00:53 +0000 (15:00 +1100)
committerBen Elliston <bje@gnu.org>
Mon, 15 Feb 2016 04:00:53 +0000 (15:00 +1100)
ChangeLog
TODO

index 989463a..067b3b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2016-02-15  Ben Elliston  <bje@gnu.org>
 
+       * TODO: Update.
+
+2016-02-15  Ben Elliston  <bje@gnu.org>
+
        * lib/dg.exp (dg-test): Remove comment about proc unresolved not
        setting exit_status to 1 -- it does.
 
diff --git a/TODO b/TODO
index 0940dda..5d4eb0c 100644 (file)
--- a/TODO
+++ b/TODO
@@ -9,43 +9,3 @@ Bigger items
 * Add more support for target boards and RTOSes.
 * Use the new expect terminal support for an "escape codes" API.
 * Use expectk and write a GUI testing API, complete with record/playback.
-
-Documentation
-=============
-
-* Add a "testing methodologies" section to the manual.
-
-\f
-From: mec.gnu@mindspring.com (Michael Elizabeth Chastain)
-Subject: my dejagnu wish list
-Newsgroups: gmane.comp.sysutils.dejagnu.general
-Date: Sat, 31 Jan 2004 21:02:21 -0500 (EST)
-
-My wish list for dejagnu:
-
-. clean up the exit status value.
-
-  The current situation is:
-
-    1  a FAIL, XPASS, KPASS, or UNRESOLVED result occurred
-    1  an unknown TCL procedure was called
-    1  --status option and a TCL error happened
-    0  all other cases
-
-  I would like to see something like:
-
-    0  all tests are okay
-    1  at least one test is not okay (FAIL, XPASS, KPASS, UNRESOLVED)
-    2  a TCL error occured
-  130  user hit ^C (SIGINT)
-  131  user hit ^\ (SIGQUIT)
-
-  The important part is that I want to detect whether dejagnu ran
-  to completion or whether the user interrupted it with ^C or ^\.
-
-. When the compiler produces error messages, default_target_compile
-  calls "verbose -log ...".  There is no need for "-log", because
-  runtest.exp already turned on "expect" logging with
-  "log_file -a $outdir/$tool.log", so there is already a copy of
-  the compiler output in the log file.  Just "verbose ..." or
-  nothing at all.