diff options
Diffstat (limited to 'test/SConscript.py')
-rw-r--r-- | test/SConscript.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/SConscript.py b/test/SConscript.py new file mode 100644 index 0000000..de24d68 --- /dev/null +++ b/test/SConscript.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python + +__revision__ = "test/SConscript.py __REVISION__ __DATE__ __DEVELOPER__" + +import TestCmd + +test = TestCmd.TestCmd(program = 'scons.py', + workdir = '', + interpreter = 'python') + +test.write('SConstruct', """ +import os +print "SConstruct", os.getcwd() +Conscript('SConscript') +""") + +# XXX I THINK THEY SHOULD HAVE TO RE-IMPORT OS HERE +test.write('SConscript', """ +import os +print "SConscript " + os.getcwd() +""") + +wpath = test.workpath() + +test.run(chdir = '.') +test.fail_test(test.stdout() != ("SConstruct %s\nSConscript %s\n" % (wpath, wpath))) + +test.pass_test() |