blob: b68bed474430b5853adf18c29e8419070ba0ddfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/usr/bin/env python
__revision__ = "test/SConstruct.py __REVISION__ __DATE__ __DEVELOPER__"
import TestCmd
test = TestCmd.TestCmd(program = 'scons.py',
workdir = '',
interpreter = 'python')
wpath = test.workpath()
test.write('sconstruct', """
import os
print "sconstruct", os.getcwd()
""")
test.run(chdir = '.')
test.fail_test(test.stdout() != ("sconstruct %s\n" % wpath))
test.write('Sconstruct', """
import os
print "Sconstruct", os.getcwd()
""")
test.run(chdir = '.')
test.fail_test(test.stdout() != ("Sconstruct %s\n" % wpath))
test.write('SConstruct', """
import os
print "SConstruct", os.getcwd()
""")
test.run(chdir = '.')
test.fail_test(test.stdout() != ("SConstruct %s\n" % wpath))
test.pass_test()
|