comparison tests/README @ 2207:8a2a7f7d9df6

Delete the shell version of run-tests Use the python version instead
author Stephen Darnell <stephen@darnell.plus.com>
date Thu, 04 May 2006 15:47:18 -0700
parents 7544700fd931
children e506c14382fd
comparison
equal deleted inserted replaced
2206:c74e91e81f70 2207:8a2a7f7d9df6
1 A simple testing framework 1 A simple testing framework
2 2
3 To run the tests, do: 3 To run the tests, do:
4 4
5 cd tests/ 5 cd tests/
6 ./run-tests 6 python run-tests.py
7 7
8 This finds all scripts in the test directory named test-* and executes 8 This finds all scripts in the test directory named test-* and executes
9 them. The scripts can be either shell scripts or Python. Each test is 9 them. The scripts can be either shell scripts or Python. Each test is
10 run in a temporary directory that is removed when the test is complete. 10 run in a temporary directory that is removed when the test is complete.
11 11