blob: 8b586d287a03ae86d05403a5656b427b463f5711 (
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
|
#!/usr/bin/env python
__revision__ = "test/SConstruct.py __REVISION__ __DATE__ __DEVELOPER__"
import TestSCons
test = TestSCons.TestSCons()
wpath = test.workpath()
test.write('sconstruct', """
import os
print "sconstruct", os.getcwd()
""")
test.run(stdout = "sconstruct %s\n" % wpath)
test.write('Sconstruct', """
import os
print "Sconstruct", os.getcwd()
""")
test.run(stdout = "Sconstruct %s\n" % wpath)
test.write('SConstruct', """
import os
print "SConstruct", os.getcwd()
""")
test.run(stdout = "SConstruct %s\n" % wpath)
test.pass_test()
|