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:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
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.
25 __revision__
= "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
28 Test that things still work when a .sconsign* file is not writable.
36 test
= TestSCons
.TestSCons(match
= TestCmd
.match_re
)
47 database_name
= test
.get_sconsignname()
48 work1__sconsign_dblite
= test
.workpath('work1', database_name
+ '.dblite')
49 work2_sub1__sconsign
= test
.workpath('work2', 'sub1', database_name
)
50 work2_sub2__sconsign
= test
.workpath('work2', 'sub2', database_name
)
51 work2_sub3__sconsign
= test
.workpath('work2', 'sub3', database_name
)
53 SConstruct_contents
= """\
54 def build1(target, source, env):
55 with open(str(target[0]), 'wb') as fo, open(str(source[0]), 'rb') as fi:
59 def build2(target, source, env):
62 with open(str(target[0]), 'wb') as fo, open(str(source[0]), 'rb') as fi:
64 dir, file = os.path.split(str(target[0]))
68 B1 = Builder(action = build1)
69 B2 = Builder(action = build2)
70 env = Environment(BUILDERS = { 'B1' : B1, 'B2' : B2 })
71 env.B1(target = 'sub1/foo.out', source = 'foo.in')
72 env.B2(target = 'sub2/foo.out', source = 'foo.in')
73 env.B2(target = 'sub3/foo.out', source = 'foo.in')
78 test
.write(['work1', 'SConstruct'], SConstruct_contents
)
80 test
.write(['work1', 'foo.in'], "work1/foo.in\n")
82 test
.write(work1__sconsign_dblite
, "")
84 os
.chmod(work1__sconsign_dblite
, 0o444)
86 test
.run(chdir
='work1', arguments
='.')
90 SConstruct_contents
= """\
92 """ + SConstruct_contents
94 test
.write(['work2', 'SConstruct'], SConstruct_contents
)
96 test
.write(['work2', 'foo.in'], "work2/foo.in\n")
98 with
open(work2_sub1__sconsign
, 'wb') as p
:
100 with
open(work2_sub2__sconsign
, 'wb') as p
:
101 pickle
.dump({}, p
, 1)
103 os
.chmod(work2_sub1__sconsign
, 0o444)
105 test
.run(chdir
='work2', arguments
='.')
113 # indent-tabs-mode:nil
115 # vim: set expandtab tabstop=4 shiftwidth=4: