]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/test/gcc_runtime.py
a7963c3440d8c20abaae9f06c1bd091bcb6ac39e
[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.txt or copy at
6 # https://www.bfgroup.xyz/b2/LICENSE.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 t.expect_addition("bin/$toolset/debug*/link-static*/hello.obj")
24 t.expect_addition("bin/$toolset/debug*/link-static*/hello.lib")
25 t.expect_nothing_more()
26
27 t.cleanup()