blob: 24c82161702031f63cf83c780e40f731d2d65682 (
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
|
#!/usr/bin/python
# Copyright 2015 Aaron Boman
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
# Test that free property inside.
import BoostBuild
t = BoostBuild.Tester(use_test_config=False)
t.write("jamroot.jam", "")
t.write(
"subdir/build.jam",
"""
import feature ;
feature.feature my-feature : : free ;
"""
)
t.write(
"subdir/subsubdir/build.jam",
"""
exe hello : hello.c ;
"""
)
t.write(
"subdir/subsubdir/hello.c",
r"""
#include <stdio.h>
int main(int argc, char **argv){
printf("%s\n", "Hello, World!");
}
"""
)
# run from the root directory
t.run_build_system(['subdir/subsubdir', 'my-feature="some value"'])
t.cleanup()
|