Added fix for TeX includes with same name as subdirs.
[scons.git] / test / option--max-drift.py
1 #!/usr/bin/env python
2 #
3 # __COPYRIGHT__
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 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26
27 import os
28
29 import TestSCons
30
31 _python_ = TestSCons._python_
32
33 test = TestSCons.TestSCons()
34
35 test.write('build.py', r"""
36 import sys
37 contents = open(sys.argv[2], 'rb').read()
38 file = open(sys.argv[1], 'wb')
39 file.write(contents)
40 file.close()
41 """)
42
43 test.write('SConstruct', """
44 B = Builder(action = r'%(_python_)s build.py $TARGETS $SOURCES')
45 env = Environment(BUILDERS = { 'B' : B })
46 env.B(target = 'f1.out', source = 'f1.in')
47 env.B(target = 'f2.out', source = 'f2.in')
48 """ % locals())
49
50 test.write('f1.in', "f1.in\n")
51 test.write('f2.in', "f2.in\n")
52
53
54
55 test.run(arguments = 'f1.out')
56
57 test.run(arguments = 'f1.out f2.out',
58          stdout = test.wrap_stdout(
59 """scons: `f1.out' is up to date.
60 %(_python_)s build.py f2.out f2.in
61 """ % locals()))
62
63 atime = os.path.getatime(test.workpath('f1.in'))
64 mtime = os.path.getmtime(test.workpath('f1.in'))
65
66 test.up_to_date(options='--max-drift=0', arguments='f1.out f2.out')
67
68 test.write('f1.in', "f1.in delta\n")
69 os.utime(test.workpath('f1.in'), (atime,mtime))
70
71 test.up_to_date(options='--max-drift=0', arguments='f1.out f2.out')
72
73 expect = test.wrap_stdout(
74 """%(_python_)s build.py f1.out f1.in
75 scons: `f2.out' is up to date.
76 """ % locals())
77
78 test.run(arguments = '--max-drift=-1 f1.out f2.out', stdout = expect)
79
80 # Test that Set/GetOption('max_drift') works:
81 test.write('SConstruct', """
82 assert GetOption('max_drift') == 2*24*60*60
83 SetOption('max_drift', 1)
84 assert GetOption('max_drift') == 1
85 """)
86
87 test.run()
88
89 test.write('SConstruct', """
90 assert GetOption('max_drift') == 1
91 SetOption('max_drift', 10)
92 assert GetOption('max_drift') == 1
93 """)
94
95 test.run(arguments='--max-drift=1')
96
97 # Test that SetOption('max_drift') actually sets max_drift
98 # by mucking with the file timestamps to make SCons not realize the source has changed
99 test.write('SConstruct', """
100 SetOption('max_drift', 0)
101 B = Builder(action = r'%(_python_)s build.py $TARGETS $SOURCES')
102 env = Environment(BUILDERS = { 'B' : B })
103 env.B(target = 'foo.out', source = 'foo.in')
104 """ % locals())
105
106 test.write('foo.in', 'foo.in\n')
107
108 atime = os.path.getatime(test.workpath('foo.in'))
109 mtime = os.path.getmtime(test.workpath('foo.in'))
110
111 test.run()
112 test.fail_test(test.read('foo.out') != 'foo.in\n')
113
114 test.write('foo.in', 'foo.in delta\n')
115 os.utime(test.workpath('foo.in'), (atime,mtime))
116
117 test.run()
118
119 test.fail_test(test.read('foo.out') != 'foo.in\n')
120
121 test.pass_test()
122
123 # Local Variables:
124 # tab-width:4
125 # indent-tabs-mode:nil
126 # End:
127 # vim: set expandtab tabstop=4 shiftwidth=4: