summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhershey <hershey>1999-03-15 16:21:21 (GMT)
committerhershey <hershey>1999-03-15 16:21:21 (GMT)
commit92ae891d01db0ca65a3bc05c226c5619dd8c8e22 (patch)
tree81cbccc9f0fa502bc614da52a6fb60b16016b138
parentb0958fe4806e58e1b66aef9fd6db7970040eea1b (diff)
downloadtk-92ae891d01db0ca65a3bc05c226c5619dd8c8e22.zip
tk-92ae891d01db0ca65a3bc05c226c5619dd8c8e22.tar.gz
tk-92ae891d01db0ca65a3bc05c226c5619dd8c8e22.tar.bz2
added entry regarding test suite changes.
-rw-r--r--changes22
1 files changed, 21 insertions, 1 deletions
diff --git a/changes b/changes
index 17bf830..36ffa2b 100644
--- a/changes
+++ b/changes
@@ -2,7 +2,7 @@ This file summarizes all changes made to Tk since version 1.0 was
released on March 13, 1991. Changes that aren't backward compatible
are marked specially.
-RCS: @(#) $Id: changes,v 1.1.4.8 1999/03/12 03:12:43 stanton Exp $
+RCS: @(#) $Id: changes,v 1.1.4.9 1999/03/15 16:21:22 hershey Exp $
3/16/91 (bug fix) Modified tkWindow.c to remove Tk's Tcl commands from
the interpreter when the main window is deleted (otherwise there will
@@ -4514,3 +4514,23 @@ The Tk library now contains no direct references to any symbols in
Tcl. In addition, there is a new Tk_MainEx() function that takes an
interpreter as an argument. See the Tcl documentation for more
information about the stubs mechanism. (redman)
+
+3/14/99 (feature change) Test suite now uses "test" namespace to
+define the test procedure and other auxiliary procedures as well as
+global variables.
+ - Global array testConfige is now called ::test::testConfig.
+ - Global variable VERBOSE is now called ::test::verbose, and
+ ::test::verbose no longer works with numerical values. We've
+ switched to a bitwise character string. You can set
+ ::test::verbose by using the -verbose option on the Tk command
+ line.
+ - Global variable TESTS is now called ::test::matchingTests, and
+ can be set on the Tk command line via the -match option.
+ - There is now a ::test::skipTests variable (works similarly to
+ ::test::matchTests) that can be set on the Tk command line via
+ the -match option.
+ - The test suite can now be run in any working directory. When
+ you run "make test", the working directory is nolonger switched
+ to ../tests.
+(hirschl)
+*** POTENTIAL INCOMPATIBILITY ***