summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/test/liblzma.py
blob: ffa16b6f904afb85377ff82ba2faa02761f97afd (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/usr/bin/python

# Copy-paste-modify from zlib.py
# Copyright (C) 2013 Steven Watanabe
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.txt or copy at
# https://www.bfgroup.xyz/b2/LICENSE.txt)

import BoostBuild
import MockToolset

t = BoostBuild.Tester(arguments=['toolset=mock', '--ignore-site-config', '--user-config='], pass_toolset=0)

MockToolset.create(t)

# Generic definitions that aren't configuration specific
common_stuff = '''
source_file('test.cpp', 'test.cpp')
source_file('main.cpp', 'int main() {}')
source_file('lzma.h.cpp', '#include <lzma.h>\\n')
action('-c -x c++ $main.cpp -o $main.o')
'''
t.write('test.cpp', 'test.cpp')

# Default initialization - static library
t.rm('bin')
t.write("Jamroot.jam", """
path-constant here : . ;
using lzma ;
exe test : test.cpp /lzma//lzma : : <link>static <link>shared ;
""")

MockToolset.set_expected(t, common_stuff + '''
action('$main.o --static-lib=lzma -o $config.exe')
action('-c -x c++ $lzma.h.cpp -o $lzma.h.o')
action('-c -x c++ $test.cpp -o $test.o')
action('$test.o --static-lib=lzma -o $test')
''')
t.run_build_system()
t.expect_addition('bin/mock/debug/test.exe')
t.expect_addition('bin/mock/debug/link-static/test.exe')

# Default initialization - shared library
t.rm('bin')
t.write("Jamroot.jam", """
path-constant here : . ;
using lzma ;
exe test : test.cpp /lzma//lzma : : <link>static <link>shared ;
""")

MockToolset.set_expected(t, common_stuff + '''
action('$main.o --shared-lib=lzma -o $config.exe')
action('-c -x c++ $lzma.h.cpp -o $lzma.h.o')
action('-c -x c++ $test.cpp -o $test.o')
action('$test.o --shared-lib=lzma -o $test')
''')
t.run_build_system()
t.expect_addition('bin/mock/debug/test.exe')
t.expect_addition('bin/mock/debug/link-static/test.exe')

# Initialization in explicit location - static library
t.rm('bin')
t.write("Jamroot.jam", """
path-constant here : . ;
using lzma : : <name>mylzma <include>$(here)/lzma <search>$(here)/lzma ;
exe test : test.cpp /lzma//lzma : : <link>static <link>shared ;
""")

t.write('lzma/lzma.h', 'lzma')

MockToolset.set_expected(t, common_stuff + '''
action('$main.o -L./lzma --static-lib=mylzma -o $config.exe')
action('-c -x c++ $test.cpp -I./lzma -o $test.o')
action('$test.o -L./lzma --static-lib=mylzma -o $test')
''')
t.run_build_system()
t.expect_addition('bin/mock/debug/test.exe')
t.expect_addition('bin/mock/debug/link-static/test.exe')

# Initialization in explicit location - shared library
t.rm('bin')
t.write("Jamroot.jam", """
path-constant here : . ;
using lzma : : <name>mylzma <include>$(here)/lzma <search>$(here)/lzma ;
exe test : test.cpp /lzma//lzma : : <link>static <link>shared ;
""")

MockToolset.set_expected(t, common_stuff + '''
action('$main.o -L./lzma --shared-lib=mylzma -o $config.exe')
action('-c -x c++ $test.cpp -I./lzma -o $test.o')
action('$test.o -L./lzma --shared-lib=mylzma -o $test')
''')
t.run_build_system()
t.expect_addition('bin/mock/debug/test.exe')
t.expect_addition('bin/mock/debug/link-static/test.exe')

# Initialization in explicit location - both static and shared libraries
t.rm('bin')
t.write("Jamroot.jam", """
path-constant here : . ;
using lzma : : <name>mylzma <include>$(here)/lzma <search>$(here)/lzma ;
exe test : test.cpp /lzma//lzma
  : <link>shared:<define>SHARED : <link>static <link>shared ;
""")

MockToolset.set_expected(t, common_stuff + '''
action('$main.o -L./lzma --static-lib=mylzma -o $config.exe')
action('$main.o -L./lzma --shared-lib=mylzma -o $config.exe')
action('-c -x c++ $test.cpp -I./lzma -o $test-static.o')
action('-c -x c++ $test.cpp -I./lzma -DSHARED -o $test-shared.o')
action('$test-static.o -L./lzma --static-lib=mylzma -o $test')
action('$test-shared.o -L./lzma --shared-lib=mylzma -o $test')
''')
t.run_build_system()
t.expect_addition('bin/mock/debug/test.exe')
t.expect_addition('bin/mock/debug/link-static/test.exe')

t.cleanup()