diff options
author | William Deegan <bill@baddogconsulting.com> | 2011-03-07 06:00:54 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2011-03-07 06:00:54 (GMT) |
commit | 0ff5132fe21ccda00915507421280ca3a12b82a7 (patch) | |
tree | 0559f2e147bce2fdc023c73a67ec825ec4d1752b /runtest.py | |
parent | e2a94d3a26adc267b35ddec93da41d8547922fda (diff) | |
download | SCons-0ff5132fe21ccda00915507421280ca3a12b82a7.zip SCons-0ff5132fe21ccda00915507421280ca3a12b82a7.tar.gz SCons-0ff5132fe21ccda00915507421280ca3a12b82a7.tar.bz2 |
allow runtest.py -f file to have list of files with whitespace before or after filenames
Diffstat (limited to 'runtest.py')
-rw-r--r-- | runtest.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -641,6 +641,7 @@ elif testlistfile: tests = open(testlistfile, 'r').readlines() tests = [x for x in tests if x[0] != '#'] tests = [x[:-1] for x in tests] + tests = [x.strip() for x in tests] elif all and not qmtest: # Find all of the SCons functional tests in the local directory # tree. This is anything under the 'src' subdirectory that ends |