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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#!/usr/bin/env python
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import TestSCons
import os.path
test = TestSCons.TestSCons()
test.subdir('subdir')
subdir_BuildThis = os.path.join('subdir', 'Buildthis')
test.write('SConscript', """
import os
print "SConscript " + os.getcwd()
""")
test.write(subdir_BuildThis, """
import os
print "subdir/BuildThis", os.getcwd()
""")
wpath = test.workpath()
test.run(arguments = '-f SConscript',
stdout = "SConscript %s\n" % wpath)
test.run(arguments = '-f ' + subdir_BuildThis,
stdout = "subdir/BuildThis %s\n" % wpath)
test.run(arguments = '--file=SConscript',
stdout = "SConscript %s\n" % wpath)
test.run(arguments = '--file=' + subdir_BuildThis,
stdout = "subdir/BuildThis %s\n" % wpath)
test.run(arguments = '--makefile=SConscript',
stdout = "SConscript %s\n" % wpath)
test.run(arguments = '--makefile=' + subdir_BuildThis,
stdout = "subdir/BuildThis %s\n" % wpath)
test.run(arguments = '--sconstruct=SConscript',
stdout = "SConscript %s\n" % wpath)
test.run(arguments = '--sconstruct=' + subdir_BuildThis,
stdout = "subdir/BuildThis %s\n" % wpath)
test.run(arguments = '-f -', stdin = """
import os
print "STDIN " + os.getcwd()
""",
stdout = "STDIN %s\n" % wpath)
test.run(arguments = '-f no_such_file',
stdout = "",
stderr = "Ignoring missing script 'no_such_file'\n")
test.pass_test()
|