trivial typo in man page
[scons.git] / test / Repository / absolute-path.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.path
28 import sys
29 import TestSCons
30
31 if sys.platform == 'win32':
32     _exe = '.exe'
33 else:
34     _exe = ''
35
36 test = TestSCons.TestSCons()
37
38 test.subdir('repository',
39             ['repository', 'src'],
40             'subdir',
41             'work')
42
43 src_SConscript = os.path.join('src', 'SConscript')
44 subdir_aaa_c = test.workpath('subdir', 'aaa.c')
45 work_src_foo = test.workpath('work', 'src', 'foo' + _exe)
46
47 opts = "-Y " + test.workpath('repository')
48
49 #
50 test.write(['repository', 'SConstruct'], r"""
51 SConscript(r'%s')
52 """ % src_SConscript)
53
54 test.write(['repository', 'src', 'SConscript'], r"""
55 env = Environment()
56 env.Program('foo', ['aaa.c', r'%s', 'foo.c'])
57 """ % subdir_aaa_c)
58
59 test.write(['repository', 'src', 'aaa.c'], r"""
60 #include <stdio.h>
61 #include <stdlib.h>
62 void
63 src_aaa(void)
64 {
65         printf("repository/src/aaa.c\n");
66 }
67 """)
68
69 test.write(['subdir', 'aaa.c'], r"""
70 #include <stdio.h>
71 #include <stdlib.h>
72 void
73 subdir_aaa(void)
74 {
75         printf("subdir/aaa.c\n");
76 }
77 """)
78
79 test.write(['repository', 'src', 'foo.c'], r"""
80 #include <stdio.h>
81 #include <stdlib.h>
82 extern void src_aaa(void);
83 extern void subdir_aaa(void);
84 int
85 main(int argc, char *argv[])
86 {
87         argv[argc++] = "--";
88         src_aaa();
89         subdir_aaa();
90         printf("repository/src/foo.c\n");
91         exit (0);
92 }
93 """)
94
95 # Make the entire repository non-writable, so we'll detect
96 # if we try to write into it accidentally.
97 test.writable('repository', 0)
98
99 test.run(chdir = 'work', options = opts, arguments = '.')
100
101 test.run(program = work_src_foo, stdout = """repository/src/aaa.c
102 subdir/aaa.c
103 repository/src/foo.c
104 """)
105
106 test.up_to_date(chdir = 'work', options = opts, arguments = '.')
107
108 #
109 test.pass_test()
110
111 # Local Variables:
112 # tab-width:4
113 # indent-tabs-mode:nil
114 # End:
115 # vim: set expandtab tabstop=4 shiftwidth=4: