diff options
author | Steven Knight <knight@baldmt.com> | 2001-08-14 11:17:14 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-08-14 11:17:14 (GMT) |
commit | 7884cffaf3380a66a999ae8db12e0418f96993c0 (patch) | |
tree | 98d0b177f9b53719dc070c00f52332f653b65049 /config | |
parent | 062cbfc18a81e3b0c4147c4ead7cebff5e18063f (diff) | |
download | SCons-7884cffaf3380a66a999ae8db12e0418f96993c0.zip SCons-7884cffaf3380a66a999ae8db12e0418f96993c0.tar.gz SCons-7884cffaf3380a66a999ae8db12e0418f96993c0.tar.bz2 |
Clean up tests.
Diffstat (limited to 'config')
-rw-r--r-- | config | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -34,7 +34,7 @@ * if the file is not in the change. Look in aesub(5) for more information * about command substitutions. */ -build_command = "cons date='${DAte %Y/%m/%d %H:%M:%S}' developer=${DEVeloper} version=${VERsion}"; +build_command = "cons date='${DAte %Y/%m/%d %H:%M:%S}' developer=${DEVeloper} version=${VERsion} change=${Change}"; /* * The rules used in the User Guide all remove their targets before @@ -244,6 +244,8 @@ diff_command = */ test_command = "python runtest.py -v ${VERsion} ${File_Name}"; +new_test_filename = "test/CHANGETHIS.py"; + /* * */ @@ -255,10 +257,14 @@ file_template = }, { pattern = [ "src/scons/*Tests.py" ]; - body = "${read_file ${source template/test.py abs}}"; + body = "${read_file ${source template/Tests.py abs}}"; }, { pattern = [ "src/scons/*.py" ]; body = "${read_file ${source template/file.py abs}}"; }, + { + pattern = [ "test/*.py" ]; + body = "${read_file ${source template/test.py abs}}"; + }, ]; |