summaryrefslogtreecommitdiffstats
path: root/tests/README
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-04-01 19:17:08 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-04-01 19:17:08 (GMT)
commitd841a4739e902010e8d6a1abd084639af7c53139 (patch)
tree64949b22fcf769bb75bcc021a15bcae135ca8eee /tests/README
parent604b655238d9570d219c95f5b2907ffec849f629 (diff)
downloadtcl-d841a4739e902010e8d6a1abd084639af7c53139.zip
tcl-d841a4739e902010e8d6a1abd084639af7c53139.tar.gz
tcl-d841a4739e902010e8d6a1abd084639af7c53139.tar.bz2
* tests/README: Direct [source] of *.test files is no longer
recommended. The tests/*.test files should only be evaluated under the control of the [runAllTests] command in tests/all.tcl.
Diffstat (limited to 'tests/README')
-rw-r--r--tests/README61
1 files changed, 40 insertions, 21 deletions
diff --git a/tests/README b/tests/README
index 19a8025..75a08e7 100644
--- a/tests/README
+++ b/tests/README
@@ -1,12 +1,14 @@
README -- Tcl test suite design document.
-RCS: @(#) $Id: README,v 1.11 2002/08/08 14:50:51 dgp Exp $
+RCS: @(#) $Id: README,v 1.12 2003/04/01 19:17:21 dgp Exp $
Contents:
---------
1. Introduction
- 2. Incompatibilities with prior Tcl versions
+ 2. Running tests
+ 3. Adding tests
+ 4. Incompatibilities with prior Tcl versions
1. Introduction:
----------------
@@ -18,24 +20,36 @@ file that corresponds to the file prefix. The C functions and/or Tcl
commands tested by a given file are listed in the first line of the
file.
-You can run the tests in three ways:
-
- (a) type "make test" in ../unix; this will create the tcltest
- executable and run all of the tests. At least "make tcltest"
- must be run to create the tcltest executable for the other
- options.
-
- (b) type "tcltest <testFile> ?<option> <value>?
-
- where the options and values are the configuration options
- of the tcltest package.
-
- (c) start up tcltest in this directory, then "source" the test
- file (for example, type "source parse.test"). To run all
- of the tests, type "source all.tcl". To use the options in
- interactive mode, you can set them with the tcltest::configure
- command. Set constraints with the tcltest::testConstraints
- command.
+2. Running tests:
+-----------------
+
+We recommend that you use the "test" target of Tcl's Makefile to run
+the test suite. From the directory in which you build Tcl, simply
+type "make test". This will create a special executable named
+tcltest in which the testing scripts will be evaluated. To create
+the tcltest executable without running the test suite, simple type
+"make tcltest".
+
+All the configuration options of the tcltest package are available
+during a "make test" by defining the TESTFLAGS environment variable.
+For example,if you wish to run only those tests in the file append.test,
+you can type:
+
+ make test TESTFLAGS="-file append.test"
+
+For interactive testing, the Tcl Makefile provides the "runtest" target.
+Type "make runtest" in your build directory, and the tcltest executable
+will be created, if necessary, then it will run interactively. At the
+command prompt, you may type any Tcl commands. If you type
+"source ../tests/all.tcl", the test suite will run. You may use the
+tcltest::configure command to configure the test suite run as an
+alternative to command line options via TESTFLAGS. You might also
+wish to use the tcltest::testConstraint command to select the constraints
+that govern which tests are run. See the documentation for the tcltest
+package for details.
+
+3. Adding tests:
+----------------
Please see the tcltest man page for more information regarding how to
write and run tests.
@@ -60,7 +74,7 @@ as well as an installation environment. If your test file contains
tests that should not be run in one or more of those cases, please use
the constraints mechanism to skip those tests.
-2. Incompatibilities of package tcltest 2.1 with
+4. Incompatibilities of package tcltest 2.1 with
testing machinery of very old versions of Tcl:
------------------------------------------------
@@ -88,3 +102,8 @@ the constraints mechanism to skip those tests.
command line flag. If you are running interactively, you can run
[tcltest::testConstraint nonPortable 1] (after loading the tcltest
package).
+
+7) Direct evaluation of the *.test files by the "source" command is no
+ longer recommended. Instead, "source all.tcl" and use the "-file" and
+ "-notfile" options of tcltest::configure to control which *.test files
+ are evaluated.