diff options
author | grbd <garlicbready@googlemail.com> | 2018-04-02 19:14:24 (GMT) |
---|---|---|
committer | grbd <garlicbready@googlemail.com> | 2018-04-02 19:14:24 (GMT) |
commit | cc52bda4954ae1327e7d98cfb4418c64a55056ec (patch) | |
tree | 58e22bf25fd0e52ee7e17b3c08f667ea2ff131d6 /test/SConstruct.py | |
parent | d5a21f6b86636a84d8664364e87102775bbb7a70 (diff) | |
download | SCons-cc52bda4954ae1327e7d98cfb4418c64a55056ec.zip SCons-cc52bda4954ae1327e7d98cfb4418c64a55056ec.tar.gz SCons-cc52bda4954ae1327e7d98cfb4418c64a55056ec.tar.bz2 |
Added sconstruct.py lowercase
Diffstat (limited to 'test/SConstruct.py')
-rw-r--r-- | test/SConstruct.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/SConstruct.py b/test/SConstruct.py index 62d383d..3cf1c02 100644 --- a/test/SConstruct.py +++ b/test/SConstruct.py @@ -39,6 +39,15 @@ scons: \*\*\* No SConstruct file found. wpath = test.workpath() +test.write('sconstruct.py', """ +import os +print("sconstruct.py "+os.getcwd()) +""") + +test.run(arguments = ".", + stdout = test.wrap_stdout(read_str = 'sconstruct.py %s\n' % wpath, + build_str = "scons: `.' is up to date.\n")) + test.write('SConstruct.py', """ import os print("SConstruct.py "+os.getcwd()) |