diff options
author | Steven Knight <knight@baldmt.com> | 2002-02-20 16:58:42 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-02-20 16:58:42 (GMT) |
commit | 50f31ea7ecee2c171457ab743b0c088cbc6104ec (patch) | |
tree | ba3d819fb6437d4db99e1b6bc3f6d1f900c4c5d4 /etc/SConscript | |
parent | 750a1fd4bd22d3c940cd4c9167c4bee3abc08d95 (diff) | |
download | SCons-50f31ea7ecee2c171457ab743b0c088cbc6104ec.zip SCons-50f31ea7ecee2c171457ab743b0c088cbc6104ec.tar.gz SCons-50f31ea7ecee2c171457ab743b0c088cbc6104ec.tar.bz2 |
Fix runtest.py for new package-testing scheme baseline tests.
Diffstat (limited to 'etc/SConscript')
-rw-r--r-- | etc/SConscript | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/etc/SConscript b/etc/SConscript new file mode 100644 index 0000000..ce835b8 --- /dev/null +++ b/etc/SConscript @@ -0,0 +1,45 @@ +# +# SConscript file for external packages we need. +# + +# +# Copyright (c) 2001, 2002 Steven Knight +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# + +import os.path + +Import('env') + +files = [ + 'TestCmd.py', + 'TestSCons.py', + 'unittest.py', +] + +def copy(target, source, env): + print "copy() < %s > %s" % (source[0], target) + open(target, 'wb').write(open(source[0], 'rb').read()) + +for file in files: + env.Command(os.path.join('#build', 'etc', file), + file, + copy) |