summaryrefslogtreecommitdiffstats
path: root/test/option-s.py
blob: 66d92c797e08b0c08e087fe928d135388a8b74b0 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python

__revision__ = "test/option-s.py __REVISION__ __DATE__ __DEVELOPER__"

import TestCmd
import os.path
import string
import sys

test = TestCmd.TestCmd(program = 'scons.py',
                       workdir = '',
                       interpreter = 'python')

test.write('build.py', r"""
import sys
file = open(sys.argv[1], 'w')
file.write("build.py: %s\n" % sys.argv[1])
file.close()
""")

test.write('SConstruct', """
MyBuild = Builder(name = "MyBuild",
		  action = "python build.py %(target)s")
env = Environment(BUILDERS = [MyBuild])
env.MyBuild(target = 'f1.out', source = 'f1.in')
env.MyBuild(target = 'f2.out', source = 'f2.in')
""")

test.run(chdir = '.', arguments = '-s f1.out f2.out')

test.fail_test(test.stdout() != "")
test.fail_test(test.stderr() != "")
test.fail_test(not os.path.exists(test.workpath('f1.out')))
test.fail_test(not os.path.exists(test.workpath('f2.out')))

os.unlink(test.workpath('f1.out'))
os.unlink(test.workpath('f2.out'))

test.run(chdir = '.', arguments = '--silent f1.out f2.out')

test.fail_test(test.stdout() != "")
test.fail_test(test.stderr() != "")
test.fail_test(not os.path.exists(test.workpath('f1.out')))
test.fail_test(not os.path.exists(test.workpath('f2.out')))

os.unlink(test.workpath('f1.out'))
os.unlink(test.workpath('f2.out'))

test.run(chdir = '.', arguments = '--quiet f1.out f2.out')

test.fail_test(test.stdout() != "")
test.fail_test(test.stderr() != "")
test.fail_test(not os.path.exists(test.workpath('f1.out')))
test.fail_test(not os.path.exists(test.workpath('f2.out')))

test.pass_test()