summaryrefslogtreecommitdiffstats
path: root/test/SConscript.py
blob: 41957fc0ea4e949f69488d33632db70a91ec2af8 (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
#!/usr/bin/env python

__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"

import TestSCons

test = TestSCons.TestSCons()

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(stdout = "SConstruct %s\nSConscript %s\n" % (wpath, wpath))

test.pass_test()