Blame view

3rdparty/boost_1_81_0/tools/build/test/message.py 826 Bytes
73ef4ff3   Hu Chunming   提交三方库
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
  #!/usr/bin/python
  
  # Copyright (C) Vladimir Prus 2003.
  # Distributed under the Boost Software License, Version 1.0.
  #    (See accompanying file LICENSE.txt or copy at
  #         https://www.bfgroup.xyz/b2/LICENSE.txt)
  
  # Test for the regression testing framework.
  
  import BoostBuild
  
  # Create a temporary working directory.
  t = BoostBuild.Tester(["-d0"], use_test_config=False)
  
  t.write("Jamroot.jam", """
  project
    :
    : usage-requirements <define>TEST=1
    : default-build <link>static
  ;
  message hello : "Hello World!" ;
  alias hello : : <link>shared ;
  obj test : test.cpp hello : <link>static ;
  """)
  
  t.write("test.cpp", """
  #ifndef TEST
  #error TEST not defined
  #endif
  """)
  
  t.run_build_system(["test"], stdout="""Hello World!
  """)
  
  t.expect_addition("bin/$toolset/link-static*/test.obj")
  t.expect_nothing_more()
  
  t.cleanup()