More flexible (and Make-like) ignoring command exit status, and suppressing printing...
[scons.git] / test / ignore-command.py
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2001, 2002, 2003, 2004 The SCons Foundation
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #
24
25 """
26 Test use of a preceding - to ignore the return value from a command.
27 """
28
29 __revision__ = "/home/scons/scons/branch.0/branch.96/baseline/test/option-n.py 0.96.C352 2005/03/26 00:09:23 knight"
30
31 import os
32 import os.path
33 import re
34 import string
35 import sys
36 import TestCmd
37 import TestSCons
38
39 python = TestSCons.python
40
41 test = TestSCons.TestSCons()
42
43 test.subdir('build', 'src')
44
45 test.write('build.py', r"""
46 import sys
47 fp = open(sys.argv[1], 'wb')
48 for f in sys.argv[2:]:
49     fp.write(open(f, 'rb').read())
50 fp.close()
51 sys.exit(1)
52 """)
53
54 test.write('SConstruct', """\
55 env = Environment()
56 f1 = env.Command('f1.out', 'f1.in', "%(python)s build.py $TARGET $SOURCE")
57 f2 = env.Command('f2.out', 'f2.in', "-%(python)s build.py $TARGET $SOURCE")
58 f3 = env.Command('f3.out', 'f3.in', "- %(python)s build.py $TARGET $SOURCE")
59 f4 = env.Command('f4.out', 'f4.in', "@-%(python)s build.py $TARGET $SOURCE")
60 f5 = env.Command('f5.out', 'f5.in', "@- %(python)s build.py $TARGET $SOURCE")
61 f6 = env.Command('f6.out', 'f6.in', "-@%(python)s build.py $TARGET $SOURCE")
62 f7 = env.Command('f7.out', 'f7.in', "-@ %(python)s build.py $TARGET $SOURCE")
63 Default(f2, f3, f4, f5, f6, f7)
64 """ % locals())
65
66 test.write('f1.in', "f1.in\n")
67 test.write('f2.in', "f2.in\n")
68 test.write('f3.in', "f3.in\n")
69 test.write('f4.in', "f4.in\n")
70 test.write('f5.in', "f5.in\n")
71 test.write('f6.in', "f6.in\n")
72 test.write('f7.in', "f7.in\n")
73
74 test.run()
75
76 test.must_match('f2.out', "f2.in\n")
77 test.must_match('f3.out', "f3.in\n")
78 test.must_match('f4.out', "f4.in\n")
79 test.must_match('f5.out', "f5.in\n")
80 test.must_match('f6.out', "f6.in\n")
81 test.must_match('f7.out', "f7.in\n")
82
83 test.run(arguments='.', status=2, stderr=None)
84
85 test.must_match('f1.out', "f1.in\n")
86
87 test.pass_test()