]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/test/gcc_runtime.py
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / test / gcc_runtime.py
1 #!/usr/bin/python
2
3 # Copyright 2004 Vladimir Prus
4 # Distributed under the Boost Software License, Version 1.0.
5 # (See accompanying file LICENSE_1_0.txt or copy at
6 # http://www.boost.org/LICENSE_1_0.txt)
7
8 # Tests that on gcc, we correctly report a problem when static runtime is
9 # requested for building a shared library.
10
11 import BoostBuild
12
13 t = BoostBuild.Tester()
14 t.write("jamroot.jam", "lib hello : hello.cpp ;")
15 t.write("hello.cpp", "int main() {}\n")
16
17 t.run_build_system(["runtime-link=static"])
18 t.expect_output_lines("warning: On gcc, DLLs can not be built with "
19 "'<runtime-link>static'.")
20 t.expect_nothing_more()
21
22 t.run_build_system(["link=static", "runtime-link=static"])
23 binFolder = "bin/$toolset/debug*/link-static/runtime-link-static"
24 t.expect_addition("%s/hello.obj" % binFolder)
25 t.expect_addition("%s/hello.lib" % binFolder)
26 t.expect_nothing_more()
27
28 t.cleanup()